public enum OxmVlanId extends Enum<OxmVlanId>
| Enum Constant and Description |
|---|
EXACT
Match when the specified VLAN ID is present; Since 1.3.
|
NONE
Match when no VLAN ID is present; Since 1.3.
|
PRESENT
Match when any VLAN ID is present; Since 1.3.
|
| Modifier and Type | Method and Description |
|---|---|
static OxmVlanId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OxmVlanId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OxmVlanId NONE
public static final OxmVlanId PRESENT
public static final OxmVlanId EXACT
public static OxmVlanId[] values()
for (OxmVlanId c : OxmVlanId.values()) System.out.println(c);
public static OxmVlanId 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 nullCopyright © 2014. All Rights Reserved.