edu.wis.jtlv.experimental.games
Enum GamesMain.Kind

java.lang.Object
  extended by java.lang.Enum<GamesMain.Kind>
      extended by edu.wis.jtlv.experimental.games.GamesMain.Kind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GamesMain.Kind>
Enclosing class:
GamesMain

public static enum GamesMain.Kind
extends java.lang.Enum<GamesMain.Kind>


Enum Constant Summary
check
           
new_par
           
par
           
seq
           
 
Method Summary
static GamesMain.Kind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GamesMain.Kind[] 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

seq

public static final GamesMain.Kind seq

par

public static final GamesMain.Kind par

new_par

public static final GamesMain.Kind new_par

check

public static final GamesMain.Kind check
Method Detail

values

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

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

valueOf

public static GamesMain.Kind 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