com.xensource.xenapi
public static enum Types.NetworkDefaultLockingMode extends java.lang.Enum<Types.NetworkDefaultLockingMode>
| Enum Constant and Description |
|---|
DISABLED
Treat all VIFs on this network with locking_mode = 'default' as if they have locking_mode = 'disabled'
|
UNLOCKED
Treat all VIFs on this network with locking_mode = 'default' as if they have locking_mode = 'unlocked'
|
UNRECOGNIZED
The value does not belong to this enumeration
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Types.NetworkDefaultLockingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.NetworkDefaultLockingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.NetworkDefaultLockingMode UNRECOGNIZED
public static final Types.NetworkDefaultLockingMode UNLOCKED
public static final Types.NetworkDefaultLockingMode DISABLED
public static Types.NetworkDefaultLockingMode[] values()
for (Types.NetworkDefaultLockingMode c : Types.NetworkDefaultLockingMode.values()) System.out.println(c);
public static Types.NetworkDefaultLockingMode 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Types.NetworkDefaultLockingMode>