Package org.onosproject.store.service
Enum EventuallyConsistentMapEvent.Type
- java.lang.Object
-
- java.lang.Enum<EventuallyConsistentMapEvent.Type>
-
- org.onosproject.store.service.EventuallyConsistentMapEvent.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<EventuallyConsistentMapEvent.Type>
- Enclosing class:
- EventuallyConsistentMapEvent<K,V>
public static enum EventuallyConsistentMapEvent.Type extends Enum<EventuallyConsistentMapEvent.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventuallyConsistentMapEvent.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static EventuallyConsistentMapEvent.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUT
public static final EventuallyConsistentMapEvent.Type PUT
Entry added to map or existing entry updated.
-
REMOVE
public static final EventuallyConsistentMapEvent.Type REMOVE
Entry removed from map.
-
-
Method Detail
-
values
public static EventuallyConsistentMapEvent.Type[] 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 (EventuallyConsistentMapEvent.Type c : EventuallyConsistentMapEvent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventuallyConsistentMapEvent.Type 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
-
-