Enum ForwardingRulesProperty
- java.lang.Object
-
- java.lang.Enum<ForwardingRulesProperty>
-
- org.opendaylight.openflowplugin.applications.frm.ForwardingRulesProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<ForwardingRulesProperty>
public enum ForwardingRulesProperty extends Enum<ForwardingRulesProperty>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUNDLE_BASED_RECONCILIATION_ENABLED
DISABLE_RECONCILIATION
RECONCILIATION_RETRY_COUNT
STALE_MARKING_ENABLED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ForwardingRulesProperty
forValue(String key)
Get property type from property key.String
toString()
Converts enum name to property key.static ForwardingRulesProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static ForwardingRulesProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLE_RECONCILIATION
public static final ForwardingRulesProperty DISABLE_RECONCILIATION
-
STALE_MARKING_ENABLED
public static final ForwardingRulesProperty STALE_MARKING_ENABLED
-
RECONCILIATION_RETRY_COUNT
public static final ForwardingRulesProperty RECONCILIATION_RETRY_COUNT
-
BUNDLE_BASED_RECONCILIATION_ENABLED
public static final ForwardingRulesProperty BUNDLE_BASED_RECONCILIATION_ENABLED
-
-
Method Detail
-
values
public static ForwardingRulesProperty[] 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 (ForwardingRulesProperty c : ForwardingRulesProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ForwardingRulesProperty 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
-
forValue
public static ForwardingRulesProperty forValue(String key)
Get property type from property key.- Parameters:
key
- the property key- Returns:
- the property type
-
toString
public String toString()
Converts enum name to property key.- Overrides:
toString
in classEnum<ForwardingRulesProperty>
- Returns:
- the property key
-
-