org.starhope.rahab.util
Enum Actions

java.lang.Object
  extended by java.lang.Enum<Actions>
      extended by org.starhope.rahab.util.Actions
All Implemented Interfaces:
Serializable, Comparable<Actions>

public enum Actions
extends Enum<Actions>

WRITEME: Document this type. twheys@gmail.com Dec 30, 2009

Author:
Tim Heys

Enum Constant Summary
ban
          WRITEME
join
          WRITEME
kick
          WRITEME
mail
          WRITEME
mod
          WRITEME
Oops
          WRITEME
part
          WRITEME
post
          WRITEME
REDLIST
          WRITEME
reporting
          WRITEME
said
          WRITEME
warn
          WRITEME
 
Method Summary
static Actions valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Actions[] 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

ban

public static final Actions ban
WRITEME


join

public static final Actions join
WRITEME


kick

public static final Actions kick
WRITEME


mail

public static final Actions mail
WRITEME


mod

public static final Actions mod
WRITEME


Oops

public static final Actions Oops
WRITEME


part

public static final Actions part
WRITEME


post

public static final Actions post
WRITEME


REDLIST

public static final Actions REDLIST
WRITEME


reporting

public static final Actions reporting
WRITEME


said

public static final Actions said
WRITEME


warn

public static final Actions warn
WRITEME

Method Detail

values

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

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

valueOf

public static Actions valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null