Package org.onosproject.net.flow
Enum FlowRuleEvent.Type
- java.lang.Object
-
- java.lang.Enum<FlowRuleEvent.Type>
-
- org.onosproject.net.flow.FlowRuleEvent.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<FlowRuleEvent.Type>
- Enclosing class:
- FlowRuleEvent
public static enum FlowRuleEvent.Type extends Enum<FlowRuleEvent.Type>
Type of flow rule events.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
RULE_ADDED
public static final FlowRuleEvent.Type RULE_ADDED
Signifies that a new flow rule has been detected.
-
RULE_REMOVED
public static final FlowRuleEvent.Type RULE_REMOVED
Signifies that a flow rule has been removed.
-
RULE_UPDATED
public static final FlowRuleEvent.Type RULE_UPDATED
Signifies that a rule has been updated.
-
RULE_ADD_REQUESTED
public static final FlowRuleEvent.Type RULE_ADD_REQUESTED
-
RULE_REMOVE_REQUESTED
public static final FlowRuleEvent.Type RULE_REMOVE_REQUESTED
-
-
Method Detail
-
values
public static FlowRuleEvent.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 (FlowRuleEvent.Type c : FlowRuleEvent.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 FlowRuleEvent.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
-
-