com.vodafone360.people.datatypes
Enum Conversation.Tags

java.lang.Object
  extended by java.lang.Enum<Conversation.Tags>
      extended by com.vodafone360.people.datatypes.Conversation.Tags
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Conversation.Tags>
Enclosing class:
Conversation

public static enum Conversation.Tags
extends java.lang.Enum<Conversation.Tags>


Enum Constant Summary
PAYLOAD
           
TYPE
           
USERID
           
 
Field Summary
private  java.lang.String mTag
           
 
Method Summary
private static Conversation.Tags findTag(java.lang.String tag)
           
 java.lang.String tag()
           
static Conversation.Tags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Conversation.Tags[] 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

USERID

public static final Conversation.Tags USERID

TYPE

public static final Conversation.Tags TYPE

PAYLOAD

public static final Conversation.Tags PAYLOAD
Field Detail

mTag

private final java.lang.String mTag
Method Detail

values

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

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

valueOf

public static Conversation.Tags 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

tag

public java.lang.String tag()

findTag

private static Conversation.Tags findTag(java.lang.String tag)


JavaDoc