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