public enum PortDescPropertyType extends Enum<PortDescPropertyType>
| Enum Constant and Description |
|---|
ETHERNET |
EXPERIMENTER |
OPTICAL |
OPTICAL_TRANSPORT |
PIPELINE_INPUT |
PIPELINE_OUTPUT |
RECIRCULATE |
| Modifier and Type | Method and Description |
|---|---|
int |
valueOf() |
static PortDescPropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PortDescPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortDescPropertyType ETHERNET
public static final PortDescPropertyType OPTICAL
public static final PortDescPropertyType OPTICAL_TRANSPORT
public static final PortDescPropertyType PIPELINE_INPUT
public static final PortDescPropertyType PIPELINE_OUTPUT
public static final PortDescPropertyType RECIRCULATE
public static final PortDescPropertyType EXPERIMENTER
public static PortDescPropertyType[] values()
for (PortDescPropertyType c : PortDescPropertyType.values()) System.out.println(c);
public static PortDescPropertyType 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 nullpublic int valueOf()