public static enum Entry.ContextType extends Enum<Entry.ContextType>
| Enum Constant and Description |
|---|
ASCII_STRING |
ATOMICINTEGER |
ATOMICLONG |
BIGDECIMAL |
BIGINTEGER |
BOOLEAN |
BYTE |
CATALOG |
CHAR |
DOUBLE |
FLOAT |
INT |
LONG |
OPAQUE |
SERIALIZABLE |
SHORT |
STRING |
VIEW_CAPABLE |
| Modifier and Type | Method and Description |
|---|---|
static <T extends Number> |
fromNumberClass(Class<T> clz)
Utility method designed to quickly determine the context type corresponding
to a given class, clz.
|
static Entry.ContextType |
fromOrdinal(int ordinal)
Get the ContextType corresponding to the specified ordinal value.
|
static Entry.ContextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entry.ContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entry.ContextType ATOMICINTEGER
public static final Entry.ContextType ATOMICLONG
public static final Entry.ContextType ASCII_STRING
public static final Entry.ContextType BIGDECIMAL
public static final Entry.ContextType BIGINTEGER
public static final Entry.ContextType BOOLEAN
public static final Entry.ContextType BYTE
public static final Entry.ContextType CATALOG
public static final Entry.ContextType CHAR
public static final Entry.ContextType DOUBLE
public static final Entry.ContextType FLOAT
public static final Entry.ContextType INT
public static final Entry.ContextType LONG
public static final Entry.ContextType OPAQUE
public static final Entry.ContextType SERIALIZABLE
public static final Entry.ContextType SHORT
public static final Entry.ContextType STRING
public static final Entry.ContextType VIEW_CAPABLE
public static Entry.ContextType[] values()
for (Entry.ContextType c : Entry.ContextType.values()) System.out.println(c);
public static Entry.ContextType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Entry.ContextType fromOrdinal(int ordinal)
ordinal - public static <T extends Number> Entry.ContextType fromNumberClass(Class<T> clz)
clz - Copyright © 2019. All rights reserved.