Enum PortNumberValuesV10
- java.lang.Object
-
- java.lang.Enum<PortNumberValuesV10>
-
- org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumberValuesV10
-
- All Implemented Interfaces:
Serializable,Comparable<PortNumberValuesV10>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.Enumeration,org.opendaylight.yangtools.yang.binding.TypeObject
@Generated("mdsal-binding-generator") public enum PortNumberValuesV10 extends Enum<PortNumberValuesV10> implements org.opendaylight.yangtools.yang.binding.Enumeration
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLAll physical ports except input port.CONTROLLERSend to controller.FLOODAll physical ports except input port and those disabled by STP.INPORTSend the packet out the input port.LOCALLocal openflow "port".MAXNONENot associated with a physical port.NORMALProcess with normal L2/L3 switching.TABLEPerform actions in flow table.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Optional<PortNumberValuesV10>forName(String name)Return the enumeration member whosegetName()matches specified value.static PortNumberValuesV10forValue(int intValue)Return the enumeration member whosegetIntValue()matches specified value.intgetIntValue()StringgetName()static PortNumberValuesV10valueOf(String name)Returns the enum constant of this type with the specified name.static PortNumberValuesV10[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAX
public static final PortNumberValuesV10 MAX
-
INPORT
public static final PortNumberValuesV10 INPORT
Send the packet out the input port. This virtual port must be explicitly used in order to send back out of the input port.
-
TABLE
public static final PortNumberValuesV10 TABLE
Perform actions in flow table. NB: This can only be the destination port for packet-out messages.
-
NORMAL
public static final PortNumberValuesV10 NORMAL
Process with normal L2/L3 switching.
-
FLOOD
public static final PortNumberValuesV10 FLOOD
All physical ports except input port and those disabled by STP.
-
ALL
public static final PortNumberValuesV10 ALL
All physical ports except input port.
-
CONTROLLER
public static final PortNumberValuesV10 CONTROLLER
Send to controller.
-
LOCAL
public static final PortNumberValuesV10 LOCAL
Local openflow "port".
-
NONE
public static final PortNumberValuesV10 NONE
Not associated with a physical port.
-
-
Method Detail
-
values
public static PortNumberValuesV10[] 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 (PortNumberValuesV10 c : PortNumberValuesV10.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PortNumberValuesV10 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
-
getName
public String getName()
- Specified by:
getNamein interfaceorg.opendaylight.yangtools.yang.binding.Enumeration
-
getIntValue
public int getIntValue()
- Specified by:
getIntValuein interfaceorg.opendaylight.yangtools.yang.binding.Enumeration
-
forName
public static Optional<PortNumberValuesV10> forName(String name)
Return the enumeration member whosegetName()matches specified value.- Parameters:
name- YANG assigned name- Returns:
- corresponding PortNumberValuesV10 item, if present
- Throws:
NullPointerException- ifnameis null
-
forValue
public static PortNumberValuesV10 forValue(int intValue)
Return the enumeration member whosegetIntValue()matches specified value.- Parameters:
intValue- integer value- Returns:
- corresponding PortNumberValuesV10 item, or null if no such item exists
-
-