edu.wpi.prc.server
Enum ResultType

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

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

Stores the type of a Result that will be validated.

Author:
James Baldassari

Enum Constant Summary
Canonical
           
Single
           
SpotCheck
           
 
Field Summary
private  int value
           
 
Method Summary
 int toInt()
           
 java.lang.Integer toInteger()
           
static ResultType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResultType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Single

public static final ResultType Single

Canonical

public static final ResultType Canonical

SpotCheck

public static final ResultType SpotCheck
Field Detail

value

private int value
Method Detail

values

public static final ResultType[] 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(ResultType c : ResultType.values())
        System.out.println(c);

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

valueOf

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

toInt

public int toInt()
Returns:
Returns the value of this enum as an int.

toInteger

public java.lang.Integer toInteger()
Returns:
Returns the value of this enum as an Integer.