com.vodafone360.people.datatypes
Enum GroupItem.MemberData

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

private static enum GroupItem.MemberData
extends java.lang.Enum<GroupItem.MemberData>

Enumeration containing items contained within GroupItem Parcel.


Enum Constant Summary
COLOR
           
GROUP_TYPE
           
ID
           
IMAGE_BYTES
           
IMAGE_MIME_TYPE
           
IS_READ_ONLY
           
IS_SMART_GROUP
           
IS_SYSTEM_GROUP
           
LOCAL_GROUP_ID
           
NAME
           
REQUIRES_LOCALISATION
           
USER_ID
           
 
Method Summary
static GroupItem.MemberData valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GroupItem.MemberData[] 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

GROUP_TYPE

public static final GroupItem.MemberData GROUP_TYPE

IS_READ_ONLY

public static final GroupItem.MemberData IS_READ_ONLY

REQUIRES_LOCALISATION

public static final GroupItem.MemberData REQUIRES_LOCALISATION

IS_SYSTEM_GROUP

public static final GroupItem.MemberData IS_SYSTEM_GROUP

IS_SMART_GROUP

public static final GroupItem.MemberData IS_SMART_GROUP

LOCAL_GROUP_ID

public static final GroupItem.MemberData LOCAL_GROUP_ID

ID

public static final GroupItem.MemberData ID

USER_ID

public static final GroupItem.MemberData USER_ID

NAME

public static final GroupItem.MemberData NAME

IMAGE_MIME_TYPE

public static final GroupItem.MemberData IMAGE_MIME_TYPE

IMAGE_BYTES

public static final GroupItem.MemberData IMAGE_BYTES

COLOR

public static final GroupItem.MemberData COLOR
Method Detail

values

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

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

valueOf

public static GroupItem.MemberData 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


JavaDoc