public static enum FlowClassifierEvent.Type extends Enum<FlowClassifierEvent.Type>
| Enum Constant and Description |
|---|
FLOW_CLASSIFIER_DELETE
Signifies that flow-classifier has been deleted.
|
FLOW_CLASSIFIER_PUT
Signifies that flow-classifier has been created.
|
FLOW_CLASSIFIER_UPDATE
Signifies that flow-classifier has been updated.
|
| Modifier and Type | Method and Description |
|---|---|
static FlowClassifierEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowClassifierEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowClassifierEvent.Type FLOW_CLASSIFIER_PUT
public static final FlowClassifierEvent.Type FLOW_CLASSIFIER_DELETE
public static final FlowClassifierEvent.Type FLOW_CLASSIFIER_UPDATE
public static FlowClassifierEvent.Type[] values()
for (FlowClassifierEvent.Type c : FlowClassifierEvent.Type.values()) System.out.println(c);
public static FlowClassifierEvent.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