public static enum DeviceInterfaceDescription.Mode extends java.lang.Enum<DeviceInterfaceDescription.Mode>
Enum Constant and Description |
---|
ACCESS
Access mode to a VLAN for interface.
|
NORMAL
Normal mode of interface operation.
|
TRUNK
Trunk mode for a set of VLANs for interface.
|
Modifier and Type | Method and Description |
---|---|
static DeviceInterfaceDescription.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceInterfaceDescription.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceInterfaceDescription.Mode NORMAL
public static final DeviceInterfaceDescription.Mode ACCESS
public static final DeviceInterfaceDescription.Mode TRUNK
public static DeviceInterfaceDescription.Mode[] values()
for (DeviceInterfaceDescription.Mode c : DeviceInterfaceDescription.Mode.values()) System.out.println(c);
public static DeviceInterfaceDescription.Mode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null