public static enum EthernetTypes.BackingType.Values extends Enum<EthernetTypes.BackingType.Values>
enum representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
| Enum Constant and Description |
|---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
DISTRIBUTED_PORTGROUP
Represents
EthernetTypes.BackingType.DISTRIBUTED_PORTGROUP. |
HOST_DEVICE
Represents
EthernetTypes.BackingType.HOST_DEVICE. |
OPAQUE_NETWORK
Represents
EthernetTypes.BackingType.OPAQUE_NETWORK. |
STANDARD_PORTGROUP
Represents
EthernetTypes.BackingType.STANDARD_PORTGROUP. |
| Modifier and Type | Method and Description |
|---|---|
static EthernetTypes.BackingType.Values |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EthernetTypes.BackingType.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EthernetTypes.BackingType.Values STANDARD_PORTGROUP
EthernetTypes.BackingType.STANDARD_PORTGROUP.public static final EthernetTypes.BackingType.Values HOST_DEVICE
EthernetTypes.BackingType.HOST_DEVICE.public static final EthernetTypes.BackingType.Values DISTRIBUTED_PORTGROUP
EthernetTypes.BackingType.DISTRIBUTED_PORTGROUP.public static final EthernetTypes.BackingType.Values OPAQUE_NETWORK
EthernetTypes.BackingType.OPAQUE_NETWORK.public static final EthernetTypes.BackingType.Values _UNKNOWN
enum constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN constant, because its version
of the native Java enum lacks the new constant.public static EthernetTypes.BackingType.Values[] values()
for (EthernetTypes.BackingType.Values c : EthernetTypes.BackingType.Values.values()) System.out.println(c);
public static EthernetTypes.BackingType.Values 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 © 2016. All Rights Reserved.