Enum JeOS
- java.lang.Object
-
- java.lang.Enum<JeOS>
-
- com.zerog.ia.auto.project.vapp.enums.JeOS
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LINUX_CENTOS_JEOS
LINUX_RHEL_JEOS
LINUX_SUSE_SLES_JEOS
LINUX_UBUNTU_JEOS
WINDOWS_CORE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDisplayJeOSString()
boolean
getEnabled()
void
setDisplayJeOSString(java.lang.String displayJeOSString)
static JeOS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JeOS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOWS_CORE
public static final JeOS WINDOWS_CORE
-
LINUX_CENTOS_JEOS
public static final JeOS LINUX_CENTOS_JEOS
-
LINUX_UBUNTU_JEOS
public static final JeOS LINUX_UBUNTU_JEOS
-
LINUX_SUSE_SLES_JEOS
public static final JeOS LINUX_SUSE_SLES_JEOS
-
LINUX_RHEL_JEOS
public static final JeOS LINUX_RHEL_JEOS
-
-
Method Detail
-
values
public static JeOS[] 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 (JeOS c : JeOS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JeOS 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
-
getDisplayJeOSString
public java.lang.String getDisplayJeOSString()
-
setDisplayJeOSString
public void setDisplayJeOSString(java.lang.String displayJeOSString)
-
getEnabled
public boolean getEnabled()
-
-