game.protocol
Enum Request.RequestType

java.lang.Object
  extended by java.lang.Enum<Request.RequestType>
      extended by game.protocol.Request.RequestType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Request.RequestType>
Enclosing class:
Request

public static enum Request.RequestType
extends java.lang.Enum<Request.RequestType>


Enum Constant Summary
ACCELERATE
           
ALL
           
END
           
KICK
           
PLACEBALL
           
PLACEPLAYER
           
QUIT
           
SETTIME
           
SOCCER2008
           
SPIN
           
WANTSIDE
           
 
Method Summary
static Request.RequestType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Request.RequestType[] 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

SOCCER2008

public static final Request.RequestType SOCCER2008

WANTSIDE

public static final Request.RequestType WANTSIDE

QUIT

public static final Request.RequestType QUIT

ALL

public static final Request.RequestType ALL

SPIN

public static final Request.RequestType SPIN

ACCELERATE

public static final Request.RequestType ACCELERATE

KICK

public static final Request.RequestType KICK

PLACEPLAYER

public static final Request.RequestType PLACEPLAYER

PLACEBALL

public static final Request.RequestType PLACEBALL

SETTIME

public static final Request.RequestType SETTIME

END

public static final Request.RequestType END
Method Detail

values

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

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

valueOf

public static Request.RequestType 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