com.vodafone360.people.datatypes
Enum Contact.MemberData

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

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

Member data definitions used when reading and writing Contact from/to Parcels.


Enum Constant Summary
ABOUTME
           
CONTACTID
           
DELETED
           
FRIENDOFMINE
           
GENDER
           
LOCALID
           
NAME
           
NATIVE_CONTACT_ID
           
PROFILEPATH
           
SOURCES
           
SYNCTOPHONE
           
UPDATED
           
USERID
           
 
Method Summary
static Contact.MemberData valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Contact.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

LOCALID

public static final Contact.MemberData LOCALID

NAME

public static final Contact.MemberData NAME

ABOUTME

public static final Contact.MemberData ABOUTME

CONTACTID

public static final Contact.MemberData CONTACTID

USERID

public static final Contact.MemberData USERID

SOURCES

public static final Contact.MemberData SOURCES

GENDER

public static final Contact.MemberData GENDER

UPDATED

public static final Contact.MemberData UPDATED

PROFILEPATH

public static final Contact.MemberData PROFILEPATH

FRIENDOFMINE

public static final Contact.MemberData FRIENDOFMINE

DELETED

public static final Contact.MemberData DELETED

NATIVE_CONTACT_ID

public static final Contact.MemberData NATIVE_CONTACT_ID

SYNCTOPHONE

public static final Contact.MemberData SYNCTOPHONE
Method Detail

values

public static Contact.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 (Contact.MemberData c : Contact.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 Contact.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