public enum DevicePlatform extends java.lang.Enum<DevicePlatform>
Enum Constant and Description |
---|
ConnectedTV |
Desktop |
GameConsole |
General |
InternetOfThings |
Mobile |
ServerSideApp |
Web |
Modifier and Type | Method and Description |
---|---|
static DevicePlatform |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DevicePlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DevicePlatform Web
public static final DevicePlatform Mobile
public static final DevicePlatform Desktop
public static final DevicePlatform ServerSideApp
public static final DevicePlatform General
public static final DevicePlatform ConnectedTV
public static final DevicePlatform GameConsole
public static final DevicePlatform InternetOfThings
public static DevicePlatform[] values()
for (DevicePlatform c : DevicePlatform.values()) System.out.println(c);
public static DevicePlatform 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 null