cz.cuni.amis.pogamut.ut2004.teamcomm.mina.server.messages
Enum TCInfoRequestFailureType

Package class diagram package TCInfoRequestFailureType
java.lang.Object
  extended by java.lang.Enum<TCInfoRequestFailureType>
      extended by cz.cuni.amis.pogamut.ut2004.teamcomm.mina.server.messages.TCInfoRequestFailureType
All Implemented Interfaces:
Serializable, Comparable<TCInfoRequestFailureType>

public enum TCInfoRequestFailureType
extends Enum<TCInfoRequestFailureType>


Enum Constant Summary
CHANNEL_DOES_NOT_EXIST
           
CHANNEL_NOT_OWNED_BY_YOU
           
FAILED_TO_DESERIALIZE_REQUEST_DATA
           
FAILED_TO_PROCESS_REQUEST
           
FAILED_TO_REGISTER_THE_BOT
           
GENERIC_FAILURE
           
INVALID_MESSAGE_TYPE
           
INVALID_RECIPIENT
           
NOT_CONNECTED_TO_CHANNEL
           
REGISTERATION_REQUIRED_FIRST
           
UNKNOWN_BOT_UNREALID
           
 
Method Summary
static TCInfoRequestFailureType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TCInfoRequestFailureType[] 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

UNKNOWN_BOT_UNREALID

public static final TCInfoRequestFailureType UNKNOWN_BOT_UNREALID

REGISTERATION_REQUIRED_FIRST

public static final TCInfoRequestFailureType REGISTERATION_REQUIRED_FIRST

FAILED_TO_DESERIALIZE_REQUEST_DATA

public static final TCInfoRequestFailureType FAILED_TO_DESERIALIZE_REQUEST_DATA

FAILED_TO_REGISTER_THE_BOT

public static final TCInfoRequestFailureType FAILED_TO_REGISTER_THE_BOT

INVALID_RECIPIENT

public static final TCInfoRequestFailureType INVALID_RECIPIENT

GENERIC_FAILURE

public static final TCInfoRequestFailureType GENERIC_FAILURE

INVALID_MESSAGE_TYPE

public static final TCInfoRequestFailureType INVALID_MESSAGE_TYPE

FAILED_TO_PROCESS_REQUEST

public static final TCInfoRequestFailureType FAILED_TO_PROCESS_REQUEST

CHANNEL_DOES_NOT_EXIST

public static final TCInfoRequestFailureType CHANNEL_DOES_NOT_EXIST

CHANNEL_NOT_OWNED_BY_YOU

public static final TCInfoRequestFailureType CHANNEL_NOT_OWNED_BY_YOU

NOT_CONNECTED_TO_CHANNEL

public static final TCInfoRequestFailureType NOT_CONNECTED_TO_CHANNEL
Method Detail

values

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

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

valueOf

public static TCInfoRequestFailureType 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


Copyright © 2013 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.