edu.wpi.prc.project
Enum OperatingSystemType

java.lang.Object
  extended by java.lang.Enum<OperatingSystemType>
      extended by edu.wpi.prc.project.OperatingSystemType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OperatingSystemType>

public enum OperatingSystemType
extends java.lang.Enum<OperatingSystemType>

Indicates the type of operating system used.

Author:
James Baldassari

Enum Constant Summary
UNIX
           
WINDOWS
           
 
Field Summary
private  java.lang.String osString
           
 
Method Summary
 java.lang.String toString()
           
static OperatingSystemType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OperatingSystemType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNIX

public static final OperatingSystemType UNIX

WINDOWS

public static final OperatingSystemType WINDOWS
Field Detail

osString

private final java.lang.String osString
Method Detail

values

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

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

valueOf

public static OperatingSystemType 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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<OperatingSystemType>