public static enum MappingEvent.Type extends Enum<MappingEvent.Type>
| Enum Constant and Description |
|---|
MAPPING_ADD_REQUESTED
Signifies that a request to add mapping has been added to the store.
|
MAPPING_ADDED
Signifies that a new mapping has been detected.
|
MAPPING_REMOVE_REQUESTED
Signifies that a request to remove flow rule has been added to the store.
|
MAPPING_REMOVED
Signifies that a new mapping has been removed.
|
MAPPING_UPDATE_REQUESTED
Signifies that a request to update mapping has been added to the store.
|
MAPPING_UPDATED
Signifies that a mapping has been updated.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingEvent.Type MAPPING_ADDED
public static final MappingEvent.Type MAPPING_REMOVED
public static final MappingEvent.Type MAPPING_UPDATED
public static final MappingEvent.Type MAPPING_ADD_REQUESTED
public static final MappingEvent.Type MAPPING_UPDATE_REQUESTED
public static final MappingEvent.Type MAPPING_REMOVE_REQUESTED
public static MappingEvent.Type[] values()
for (MappingEvent.Type c : MappingEvent.Type.values()) System.out.println(c);
public static MappingEvent.Type 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 null