Enum CacheAbstractJdbcStore.TypeKind
- java.lang.Object
-
- java.lang.Enum<CacheAbstractJdbcStore.TypeKind>
-
- org.apache.ignite.cache.store.jdbc.CacheAbstractJdbcStore.TypeKind
-
- All Implemented Interfaces:
Serializable
,Comparable<CacheAbstractJdbcStore.TypeKind>
- Enclosing class:
- CacheAbstractJdbcStore<K,V>
protected static enum CacheAbstractJdbcStore.TypeKind extends Enum<CacheAbstractJdbcStore.TypeKind>
Type kind.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CacheAbstractJdbcStore.TypeKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static CacheAbstractJdbcStore.TypeKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUILT_IN
public static final CacheAbstractJdbcStore.TypeKind BUILT_IN
Type is known as Java built in type, likeString
-
POJO
public static final CacheAbstractJdbcStore.TypeKind POJO
Class for this type is available.
-
BINARY
public static final CacheAbstractJdbcStore.TypeKind BINARY
Class for this type is not available.
-
-
Method Detail
-
values
public static CacheAbstractJdbcStore.TypeKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CacheAbstractJdbcStore.TypeKind c : CacheAbstractJdbcStore.TypeKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheAbstractJdbcStore.TypeKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-