Enum GridMetadataAwareAdapter.EntryKey
- java.lang.Object
-
- java.lang.Enum<GridMetadataAwareAdapter.EntryKey>
-
- org.apache.ignite.internal.util.lang.GridMetadataAwareAdapter.EntryKey
-
- All Implemented Interfaces:
Serializable,Comparable<GridMetadataAwareAdapter.EntryKey>
- Enclosing class:
- GridMetadataAwareAdapter
public static enum GridMetadataAwareAdapter.EntryKey extends Enum<GridMetadataAwareAdapter.EntryKey>
Enum stored predefined keys.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CACHE_EVICTABLE_ENTRY_KEYPredefined key.CACHE_STORE_MANAGER_KEYPredefined key.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intkey()Returns key.static GridMetadataAwareAdapter.EntryKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static GridMetadataAwareAdapter.EntryKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CACHE_STORE_MANAGER_KEY
public static final GridMetadataAwareAdapter.EntryKey CACHE_STORE_MANAGER_KEY
Predefined key.
-
CACHE_EVICTABLE_ENTRY_KEY
public static final GridMetadataAwareAdapter.EntryKey CACHE_EVICTABLE_ENTRY_KEY
Predefined key.
-
-
Method Detail
-
values
public static GridMetadataAwareAdapter.EntryKey[] 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 (GridMetadataAwareAdapter.EntryKey c : GridMetadataAwareAdapter.EntryKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GridMetadataAwareAdapter.EntryKey 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
-
key
public int key()
Returns key.- Returns:
- key.
-
-