public static enum OSPlatform.Platform extends Enum<OSPlatform.Platform>
| Enum Constant and Description |
|---|
PLAT_AIX |
PLAT_HPUX |
PLAT_LINUX |
PLAT_MAC |
PLAT_NETWARE |
PLAT_OS2 |
PLAT_SOLARIS |
PLAT_UNDEFINED |
PLAT_UNINIT |
PLAT_WINDOWS |
| Modifier and Type | Method and Description |
|---|---|
static OSPlatform.Platform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSPlatform.Platform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSPlatform.Platform PLAT_UNINIT
public static final OSPlatform.Platform PLAT_UNDEFINED
public static final OSPlatform.Platform PLAT_WINDOWS
public static final OSPlatform.Platform PLAT_MAC
public static final OSPlatform.Platform PLAT_SOLARIS
public static final OSPlatform.Platform PLAT_LINUX
public static final OSPlatform.Platform PLAT_OS2
public static final OSPlatform.Platform PLAT_HPUX
public static final OSPlatform.Platform PLAT_AIX
public static final OSPlatform.Platform PLAT_NETWARE
public static OSPlatform.Platform[] values()
for (OSPlatform.Platform c : OSPlatform.Platform.values()) System.out.println(c);
public static OSPlatform.Platform valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.