- java.lang.Object
-
- java.lang.Enum<Constants.Profile>
-
- com.gluonhq.substrate.Constants.Profile
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Constants.Profile>
- Enclosing class:
- Constants
public static enum Constants.Profile extends java.lang.Enum<Constants.Profile>
Predefined Profiles
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDROIDIOSIOS_SIMLINUXLINUX_AARCH64MACOSMACOS_AARCH64WEBWINDOWS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Constants.ProfilevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Constants.Profile[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINUX
public static final Constants.Profile LINUX
-
LINUX_AARCH64
public static final Constants.Profile LINUX_AARCH64
-
MACOS
public static final Constants.Profile MACOS
-
MACOS_AARCH64
public static final Constants.Profile MACOS_AARCH64
-
WINDOWS
public static final Constants.Profile WINDOWS
-
IOS
public static final Constants.Profile IOS
-
IOS_SIM
public static final Constants.Profile IOS_SIM
-
ANDROID
public static final Constants.Profile ANDROID
-
WEB
public static final Constants.Profile WEB
-
-
Method Detail
-
values
public static Constants.Profile[] 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 (Constants.Profile c : Constants.Profile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constants.Profile 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
-
-