public static enum FlowRuleEvent.Type extends Enum<FlowRuleEvent.Type>
Enum Constant and Description |
---|
RULE_ADD_REQUESTED |
RULE_ADDED
Signifies that a new flow rule has been detected.
|
RULE_REMOVE_REQUESTED |
RULE_REMOVED
Signifies that a flow rule has been removed.
|
RULE_UPDATED
Signifies that a rule has been updated.
|
Modifier and Type | Method and Description |
---|---|
static FlowRuleEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowRuleEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowRuleEvent.Type RULE_ADDED
public static final FlowRuleEvent.Type RULE_REMOVED
public static final FlowRuleEvent.Type RULE_UPDATED
public static final FlowRuleEvent.Type RULE_ADD_REQUESTED
public static final FlowRuleEvent.Type RULE_REMOVE_REQUESTED
public static FlowRuleEvent.Type[] values()
for (FlowRuleEvent.Type c : FlowRuleEvent.Type.values()) System.out.println(c);
public static FlowRuleEvent.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