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 SummaryEnum Constants Enum Constant Description BUNDLE_BASED_RECONCILIATION_ENABLEDDISABLE_RECONCILIATIONRECONCILIATION_RETRY_COUNTSTALE_MARKING_ENABLED
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ForwardingRulesPropertyforValue(String key)Get property type from property key.StringtoString()Converts enum name to property key.static ForwardingRulesPropertyvalueOf(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_RECONCILIATIONpublic static final ForwardingRulesProperty DISABLE_RECONCILIATION 
 - 
STALE_MARKING_ENABLEDpublic static final ForwardingRulesProperty STALE_MARKING_ENABLED 
 - 
RECONCILIATION_RETRY_COUNTpublic static final ForwardingRulesProperty RECONCILIATION_RETRY_COUNT 
 - 
BUNDLE_BASED_RECONCILIATION_ENABLEDpublic static final ForwardingRulesProperty BUNDLE_BASED_RECONCILIATION_ENABLED 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
forValuepublic static ForwardingRulesProperty forValue(String key) Get property type from property key.- Parameters:
- key- the property key
- Returns:
- the property type
 
 - 
toStringpublic String toString() Converts enum name to property key.- Overrides:
- toStringin class- Enum<ForwardingRulesProperty>
- Returns:
- the property key
 
 
- 
 
-