com.skype
Enum ChatMessage.Type

java.lang.Object
  extended by java.lang.Enum<ChatMessage.Type>
      extended by com.skype.ChatMessage.Type
All Implemented Interfaces:
Serializable, Comparable<ChatMessage.Type>
Enclosing class:
ChatMessage

public static enum ChatMessage.Type
extends Enum<ChatMessage.Type>

Enumeration for type.


Enum Constant Summary
ADDEDMEMBERS
           
CREATEDCHATWITH
           
EMOTED
           
GAP_IN_CHAT
           
JOINEDASAPPLICANT
           
KICKBANNED
           
KICKED
           
LEFT
           
POSTEDCONTACTS
           
SAID
           
SAWMEMBERS
           
SETGUIDELINES
           
SETOPTIONS
           
SETPICTURE
           
SETROLE
           
SETTOPIC
           
UNKNOWN
           
 
Method Summary
static ChatMessage.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ChatMessage.Type[] 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

SETTOPIC

public static final ChatMessage.Type SETTOPIC

SAID

public static final ChatMessage.Type SAID

ADDEDMEMBERS

public static final ChatMessage.Type ADDEDMEMBERS

SAWMEMBERS

public static final ChatMessage.Type SAWMEMBERS

CREATEDCHATWITH

public static final ChatMessage.Type CREATEDCHATWITH

LEFT

public static final ChatMessage.Type LEFT

POSTEDCONTACTS

public static final ChatMessage.Type POSTEDCONTACTS

GAP_IN_CHAT

public static final ChatMessage.Type GAP_IN_CHAT

SETROLE

public static final ChatMessage.Type SETROLE

KICKED

public static final ChatMessage.Type KICKED

KICKBANNED

public static final ChatMessage.Type KICKBANNED

SETOPTIONS

public static final ChatMessage.Type SETOPTIONS

SETPICTURE

public static final ChatMessage.Type SETPICTURE

SETGUIDELINES

public static final ChatMessage.Type SETGUIDELINES

JOINEDASAPPLICANT

public static final ChatMessage.Type JOINEDASAPPLICANT

EMOTED

public static final ChatMessage.Type EMOTED

UNKNOWN

public static final ChatMessage.Type UNKNOWN
Method Detail

values

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

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

valueOf

public static ChatMessage.Type 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 © 2012. All Rights Reserved.