org.kinsources.kiwa.sciboard
Enum Vote.Value

java.lang.Object
  extended by java.lang.Enum<Vote.Value>
      extended by org.kinsources.kiwa.sciboard.Vote.Value
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Vote.Value>
Enclosing class:
Vote

public static enum Vote.Value
extends java.lang.Enum<Vote.Value>


Enum Constant Summary
AGREE
           
DISAGREE
           
DUBIOUS
           
NONE
           
 
Method Summary
static Vote.Value valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Vote.Value[] 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

NONE

public static final Vote.Value NONE

AGREE

public static final Vote.Value AGREE

DUBIOUS

public static final Vote.Value DUBIOUS

DISAGREE

public static final Vote.Value DISAGREE
Method Detail

values

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

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

valueOf

public static Vote.Value 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