public static enum RangeCache.Listener.EventType extends Enum<RangeCache.Listener.EventType>
| Enum Constant and Description |
|---|
DELETED
Key deleted
|
INITIALIZED
Initial cache population complete (fired only once)
|
UPDATED
Key added or modified
|
| Modifier and Type | Method and Description |
|---|---|
static RangeCache.Listener.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeCache.Listener.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeCache.Listener.EventType UPDATED
public static final RangeCache.Listener.EventType DELETED
public static final RangeCache.Listener.EventType INITIALIZED
public static RangeCache.Listener.EventType[] values()
for (RangeCache.Listener.EventType c : RangeCache.Listener.EventType.values()) System.out.println(c);
public static RangeCache.Listener.EventType 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 nullCopyright © 2023. All rights reserved.