| Enum Constant and Description |
|---|
AIX |
Any |
Digital_Unix |
FreeBSD |
HP_UX |
Irix |
Linux |
Mac_OS |
Mac_OS_X |
MPEiX |
NetWare_411 |
OpenVMS |
OS2 |
OS390 |
OSF1 |
Others |
Solaris |
SunOS |
Windows |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static EPlatform |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPlatform Any
public static final EPlatform Linux
public static final EPlatform Mac_OS
public static final EPlatform Mac_OS_X
public static final EPlatform Windows
public static final EPlatform OS2
public static final EPlatform Solaris
public static final EPlatform SunOS
public static final EPlatform MPEiX
public static final EPlatform HP_UX
public static final EPlatform AIX
public static final EPlatform OS390
public static final EPlatform FreeBSD
public static final EPlatform Irix
public static final EPlatform Digital_Unix
public static final EPlatform NetWare_411
public static final EPlatform OSF1
public static final EPlatform OpenVMS
public static final EPlatform Others
public static EPlatform[] values()
for (EPlatform c : EPlatform.values()) System.out.println(c);
public static EPlatform 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 java.lang.String toString()
toString in class java.lang.Enum<EPlatform>