org.apache.struts2.showcase.chat
Enum ChatException.ErrorType

java.lang.Object
  extended by java.lang.Enum<ChatException.ErrorType>
      extended by org.apache.struts2.showcase.chat.ChatException.ErrorType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ChatException.ErrorType>
Enclosing class:
ChatException

public static enum ChatException.ErrorType
extends java.lang.Enum<ChatException.ErrorType>


Enum Constant Summary
NO_SUCH_ROOM_EXISTS
           
ROOM_ALREADY_EXISTS
           
USER_ALREADY_EXISTS
           
 
Method Summary
static ChatException.ErrorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ChatException.ErrorType[] 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

ROOM_ALREADY_EXISTS

public static final ChatException.ErrorType ROOM_ALREADY_EXISTS

USER_ALREADY_EXISTS

public static final ChatException.ErrorType USER_ALREADY_EXISTS

NO_SUCH_ROOM_EXISTS

public static final ChatException.ErrorType NO_SUCH_ROOM_EXISTS
Method Detail

values

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

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

valueOf

public static ChatException.ErrorType 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


Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.