com.vodafone360.people.datatypes
Enum Identity.MemberData
java.lang.Object
java.lang.Enum<Identity.MemberData>
com.vodafone360.people.datatypes.Identity.MemberData
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Identity.MemberData>
- Enclosing class:
- Identity
private static enum Identity.MemberData
- extends java.lang.Enum<Identity.MemberData>
Enumeration containing items contained within Identity Parcel.
Method Summary |
static Identity.MemberData |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Identity.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 |
PLUGIN_ID
public static final Identity.MemberData PLUGIN_ID
NETWORK
public static final Identity.MemberData NETWORK
NETWORK_URL
public static final Identity.MemberData NETWORK_URL
ICON_URL
public static final Identity.MemberData ICON_URL
AUTH_TYPE
public static final Identity.MemberData AUTH_TYPE
ICON_MIME
public static final Identity.MemberData ICON_MIME
ORDER
public static final Identity.MemberData ORDER
NAME
public static final Identity.MemberData NAME
values
public static Identity.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 (Identity.MemberData c : Identity.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 Identity.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