com.vodafone360.people.datatypes
Enum GroupItem.MemberData
java.lang.Object
java.lang.Enum<GroupItem.MemberData>
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.
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 |
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
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