Enum VirtualSystemType
- java.lang.Object
-
- java.lang.Enum<VirtualSystemType>
-
- com.zerog.ia.auto.project.vapp.enums.VirtualSystemType
-
- All Implemented Interfaces:
JavaEnum
,java.io.Serializable
,java.lang.Comparable<VirtualSystemType>
public enum VirtualSystemType extends java.lang.Enum<VirtualSystemType> implements JavaEnum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description virtualbox22
vmx04
vmx06
vmx07
xen3
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDisplayString()
java.lang.String
getSuitableHypervisors()
void
setDisplayString(java.lang.String displayString)
void
setSuitableHypervisors(java.lang.String suitableHypervisors)
static VirtualSystemType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VirtualSystemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
vmx04
public static final VirtualSystemType vmx04
-
vmx06
public static final VirtualSystemType vmx06
-
vmx07
public static final VirtualSystemType vmx07
-
virtualbox22
public static final VirtualSystemType virtualbox22
-
xen3
public static final VirtualSystemType xen3
-
-
Method Detail
-
values
public static VirtualSystemType[] 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 (VirtualSystemType c : VirtualSystemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VirtualSystemType 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
-
getDisplayString
public java.lang.String getDisplayString()
-
setDisplayString
public void setDisplayString(java.lang.String displayString)
-
getSuitableHypervisors
public java.lang.String getSuitableHypervisors()
-
setSuitableHypervisors
public void setSuitableHypervisors(java.lang.String suitableHypervisors)
-
-