Package com.morpheusdata.model
Enum ComputeServerType.ClusterType
- java.lang.Object
-
- java.lang.Enum<ComputeServerType.ClusterType>
-
- com.morpheusdata.model.ComputeServerType.ClusterType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ComputeServerType.ClusterType>
- Enclosing class:
- ComputeServerType
public static enum ComputeServerType.ClusterType extends java.lang.Enum<ComputeServerType.ClusterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description docker
kubernetes
kvm
none
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ComputeServerType.ClusterType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ComputeServerType.ClusterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
kubernetes
public static final ComputeServerType.ClusterType kubernetes
-
docker
public static final ComputeServerType.ClusterType docker
-
kvm
public static final ComputeServerType.ClusterType kvm
-
none
public static final ComputeServerType.ClusterType none
-
-
Method Detail
-
values
public static ComputeServerType.ClusterType[] 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 (ComputeServerType.ClusterType c : ComputeServerType.ClusterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComputeServerType.ClusterType 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
-
-