public enum VNICType extends Enum<VNICType>
| Enum Constant and Description |
|---|
DIRECT |
MACVTAP |
NORMAL |
UNRECOGNIZED
Used by jclouds when the service returns an unknown value other than null.
|
| Modifier and Type | Method and Description |
|---|---|
static VNICType |
fromValue(String name) |
String |
toString() |
static VNICType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VNICType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VNICType NORMAL
public static final VNICType DIRECT
public static final VNICType MACVTAP
public static final VNICType UNRECOGNIZED
public static VNICType[] values()
for (VNICType c : VNICType.values()) System.out.println(c);
public static VNICType 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 © 2009-2018 The Apache Software Foundation. All Rights Reserved.