- java.lang.Object
-
- java.lang.Enum<XcodeUtils.SDKS>
-
- com.gluonhq.substrate.util.XcodeUtils.SDKS
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<XcodeUtils.SDKS>
- Enclosing class:
- XcodeUtils
public static enum XcodeUtils.SDKS extends java.lang.Enum<XcodeUtils.SDKS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IPHONEOSIPHONESIMULATORMACOSX
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSdkName()java.lang.StringgetSDKPath()static XcodeUtils.SDKSvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static XcodeUtils.SDKS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MACOSX
public static final XcodeUtils.SDKS MACOSX
-
IPHONEOS
public static final XcodeUtils.SDKS IPHONEOS
-
IPHONESIMULATOR
public static final XcodeUtils.SDKS IPHONESIMULATOR
-
-
Method Detail
-
values
public static XcodeUtils.SDKS[] 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 (XcodeUtils.SDKS c : XcodeUtils.SDKS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XcodeUtils.SDKS 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
-
getSDKPath
public java.lang.String getSDKPath()
-
getSdkName
public java.lang.String getSdkName()
-
-