com.xensource.xenapi
public static enum Types.PvsProxyStatus extends java.lang.Enum<Types.PvsProxyStatus>
Enum Constant and Description |
---|
CACHING
The proxy is currently caching data
|
INCOMPATIBLE_PROTOCOL_VERSION
The PVS protocol in use is not compatible with the PVS proxy
|
INCOMPATIBLE_WRITE_CACHE_MODE
The PVS device is configured to use an incompatible write-cache mode
|
INITIALISED
The proxy is setup but has not yet cached anything
|
STOPPED
The proxy is not currently running
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Types.PvsProxyStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.PvsProxyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.PvsProxyStatus UNRECOGNIZED
public static final Types.PvsProxyStatus STOPPED
public static final Types.PvsProxyStatus INITIALISED
public static final Types.PvsProxyStatus CACHING
public static final Types.PvsProxyStatus INCOMPATIBLE_WRITE_CACHE_MODE
public static final Types.PvsProxyStatus INCOMPATIBLE_PROTOCOL_VERSION
public static Types.PvsProxyStatus[] values()
for (Types.PvsProxyStatus c : Types.PvsProxyStatus.values()) System.out.println(c);
public static Types.PvsProxyStatus 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.PvsProxyStatus>