|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Platform>
hudson.Platform
public enum Platform
Strategy object that absorbs the platform differences.
Do not switch/case on this enum, or do a comparison, as we may add new constants.
Enum Constant Summary | |
---|---|
UNIX
|
|
WINDOWS
|
Field Summary | |
---|---|
char |
pathSeparator
The character that separates paths in environment variables like PATH and CLASSPATH. |
Method Summary | |
---|---|
static Platform |
current()
|
static boolean |
isDarwin()
|
static boolean |
isSnowLeopardOrLater()
Returns true if we run on Mac OS X >= 10.6 |
static Platform |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Platform[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Platform WINDOWS
public static final Platform UNIX
Field Detail |
---|
public final char pathSeparator
File.pathSeparator
Method Detail |
---|
public static Platform[] values()
for (Platform c : Platform.values()) System.out.println(c);
public static 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 name
NullPointerException
- if the argument is nullpublic static Platform current()
public static boolean isDarwin()
public static boolean isSnowLeopardOrLater()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |