public static enum Platform.Type extends Enum<Platform.Type>
Enum Constant and Description |
---|
AIX |
LINUX |
MACOSX |
SOLARIS |
Unchecked |
Unknown |
WINDOWS |
Modifier and Type | Method and Description |
---|---|
static Platform.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.Type Unchecked
public static final Platform.Type Unknown
public static final Platform.Type WINDOWS
public static final Platform.Type LINUX
public static final Platform.Type SOLARIS
public static final Platform.Type MACOSX
public static final Platform.Type AIX
public static Platform.Type[] values()
for (Platform.Type c : Platform.Type.values()) System.out.println(c);
public static Platform.Type 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 © 2005–2018 Alfresco Software. All rights reserved.