synergynetframework.appsystem.launcher.client
Enum Launch.OSName

java.lang.Object
  extended by java.lang.Enum<Launch.OSName>
      extended by synergynetframework.appsystem.launcher.client.Launch.OSName
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Launch.OSName>
Enclosing class:
Launch

public static enum Launch.OSName
extends java.lang.Enum<Launch.OSName>

The Enum OSName.


Enum Constant Summary
LINUX
          The linux.
MAC
          The mac.
WINDOWS
          The windows.
 
Method Summary
static Launch.OSName valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Launch.OSName[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LINUX

public static final Launch.OSName LINUX
The linux.


MAC

public static final Launch.OSName MAC
The mac.


WINDOWS

public static final Launch.OSName WINDOWS
The windows.

Method Detail

values

public static Launch.OSName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Launch.OSName c : Launch.OSName.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Launch.OSName valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null