public enum BuildPlatform extends java.lang.Enum<BuildPlatform>
| Enum Constant and Description |
|---|
AMAZON
Kindle, FireTV
|
DEDICATED |
GEAR_VR |
GOOGLE
Android
|
HOLOLENS |
IOS |
LINUX |
NX
Nintendo Switch
|
OSX
Mac OS
|
SONY
Playstation
|
TV_OS
Apple TV
|
UNDEFINED |
UWP
Windows Store version
|
WIN_32
Educational edition
|
WINDOWS_PHONE |
XBOX |
| Modifier and Type | Method and Description |
|---|---|
static BuildPlatform |
from(int id) |
static BuildPlatform |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuildPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildPlatform UNDEFINED
public static final BuildPlatform GOOGLE
public static final BuildPlatform IOS
public static final BuildPlatform OSX
public static final BuildPlatform AMAZON
public static final BuildPlatform GEAR_VR
public static final BuildPlatform HOLOLENS
public static final BuildPlatform UWP
public static final BuildPlatform WIN_32
public static final BuildPlatform DEDICATED
public static final BuildPlatform TV_OS
public static final BuildPlatform SONY
public static final BuildPlatform NX
public static final BuildPlatform XBOX
public static final BuildPlatform WINDOWS_PHONE
public static final BuildPlatform LINUX
public static BuildPlatform[] values()
for (BuildPlatform c : BuildPlatform.values()) System.out.println(c);
public static BuildPlatform valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static BuildPlatform from(int id)