Enum LocalCacheValue.JCacheSyntheticKind
- java.lang.Object
-
- java.lang.Enum<LocalCacheValue.JCacheSyntheticKind>
-
- com.tangosol.coherence.jcache.localcache.LocalCacheValue.JCacheSyntheticKind
-
- All Implemented Interfaces:
Serializable
,Comparable<LocalCacheValue.JCacheSyntheticKind>
- Enclosing class:
- LocalCacheValue
public static enum LocalCacheValue.JCacheSyntheticKind extends Enum<LocalCacheValue.JCacheSyntheticKind>
Synthetic Update
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JCACHE_SYNTHETHIC_LOADED
JCACHE_SYNTHETIC_CLEAR
JCACHE_SYNTHETIC_NONE
JCACHE_SYNTHETIC_UPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalCacheValue.JCacheSyntheticKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static LocalCacheValue.JCacheSyntheticKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JCACHE_SYNTHETIC_NONE
public static final LocalCacheValue.JCacheSyntheticKind JCACHE_SYNTHETIC_NONE
-
JCACHE_SYNTHETIC_CLEAR
public static final LocalCacheValue.JCacheSyntheticKind JCACHE_SYNTHETIC_CLEAR
-
JCACHE_SYNTHETIC_UPDATE
public static final LocalCacheValue.JCacheSyntheticKind JCACHE_SYNTHETIC_UPDATE
-
JCACHE_SYNTHETHIC_LOADED
public static final LocalCacheValue.JCacheSyntheticKind JCACHE_SYNTHETHIC_LOADED
-
-
Method Detail
-
values
public static LocalCacheValue.JCacheSyntheticKind[] 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 (LocalCacheValue.JCacheSyntheticKind c : LocalCacheValue.JCacheSyntheticKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalCacheValue.JCacheSyntheticKind 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
-
-