Package org.openstack4j.model.manila
Enum BackendStoragePool.ConsistencyGroupSupport
- java.lang.Object
-
- java.lang.Enum<BackendStoragePool.ConsistencyGroupSupport>
-
- org.openstack4j.model.manila.BackendStoragePool.ConsistencyGroupSupport
-
- All Implemented Interfaces:
Serializable,Comparable<BackendStoragePool.ConsistencyGroupSupport>
- Enclosing interface:
- BackendStoragePool
public static enum BackendStoragePool.ConsistencyGroupSupport extends Enum<BackendStoragePool.ConsistencyGroupSupport>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()static BackendStoragePool.ConsistencyGroupSupportvalue(String v)static BackendStoragePool.ConsistencyGroupSupportvalueOf(String name)Returns the enum constant of this type with the specified name.static BackendStoragePool.ConsistencyGroupSupport[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POOL
public static final BackendStoragePool.ConsistencyGroupSupport POOL
-
HOST
public static final BackendStoragePool.ConsistencyGroupSupport HOST
-
FALSE
public static final BackendStoragePool.ConsistencyGroupSupport FALSE
-
-
Method Detail
-
values
public static BackendStoragePool.ConsistencyGroupSupport[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BackendStoragePool.ConsistencyGroupSupport c : BackendStoragePool.ConsistencyGroupSupport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BackendStoragePool.ConsistencyGroupSupport valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public static BackendStoragePool.ConsistencyGroupSupport value(String v)
-
value
public String value()
-
-