public enum EPlatformType extends java.lang.Enum<EPlatformType>
| Enum Constant and Description |
|---|
Linux32 |
Linux64 |
OSX |
PS3 |
Unknown |
Win32 |
Win64 |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static EPlatformType |
from(int code) |
static EPlatformType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EPlatformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPlatformType Unknown
public static final EPlatformType Win32
public static final EPlatformType Win64
public static final EPlatformType Linux64
public static final EPlatformType OSX
public static final EPlatformType PS3
public static final EPlatformType Linux32
public static EPlatformType[] values()
for (EPlatformType c : EPlatformType.values()) System.out.println(c);
public static EPlatformType 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 int code()
public static EPlatformType from(int code)