Package com.vmware.fcd.helpers
Enum FcdUtil.DiskProvisioningTypes
- java.lang.Object
-
- java.lang.Enum<FcdUtil.DiskProvisioningTypes>
-
- com.vmware.fcd.helpers.FcdUtil.DiskProvisioningTypes
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FcdUtil.DiskProvisioningTypes>
- Enclosing class:
- FcdUtil
public static enum FcdUtil.DiskProvisioningTypes extends java.lang.Enum<FcdUtil.DiskProvisioningTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EAGER_ZEROED_THICKLAZY_ZEROED_THICKPHYSICAL_MODETHINVIRTUAL_MODE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static FcdUtil.DiskProvisioningTypesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FcdUtil.DiskProvisioningTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THIN
public static final FcdUtil.DiskProvisioningTypes THIN
-
EAGER_ZEROED_THICK
public static final FcdUtil.DiskProvisioningTypes EAGER_ZEROED_THICK
-
LAZY_ZEROED_THICK
public static final FcdUtil.DiskProvisioningTypes LAZY_ZEROED_THICK
-
VIRTUAL_MODE
public static final FcdUtil.DiskProvisioningTypes VIRTUAL_MODE
-
PHYSICAL_MODE
public static final FcdUtil.DiskProvisioningTypes PHYSICAL_MODE
-
-
Method Detail
-
values
public static FcdUtil.DiskProvisioningTypes[] 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 (FcdUtil.DiskProvisioningTypes c : FcdUtil.DiskProvisioningTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FcdUtil.DiskProvisioningTypes valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
-