com.vodafone360.people.engine.contactsync
Enum UploadServerContacts.InternalState

java.lang.Object
  extended by java.lang.Enum<UploadServerContacts.InternalState>
      extended by com.vodafone360.people.engine.contactsync.UploadServerContacts.InternalState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UploadServerContacts.InternalState>
Enclosing class:
UploadServerContacts

protected static enum UploadServerContacts.InternalState
extends java.lang.Enum<UploadServerContacts.InternalState>

Internal states supported by the processor.


Enum Constant Summary
PROCESSING_DELETED_CONTACTS
          Internal state when processing deleted contacts.
PROCESSING_DELETED_DETAILS
          Internal state when processing deleted details.
PROCESSING_GROUP_ADDITIONS
          Internal state when processing group additions.
PROCESSING_GROUP_DELETIONS
          Internal state when processing group deletions.
PROCESSING_MODIFIED_DETAILS
          Internal state when processing modified details.
PROCESSING_NEW_CONTACTS
          Internal state when processing new contacts.
 
Method Summary
static UploadServerContacts.InternalState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UploadServerContacts.InternalState[] 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

PROCESSING_NEW_CONTACTS

public static final UploadServerContacts.InternalState PROCESSING_NEW_CONTACTS
Internal state when processing new contacts.


PROCESSING_MODIFIED_DETAILS

public static final UploadServerContacts.InternalState PROCESSING_MODIFIED_DETAILS
Internal state when processing modified details.


PROCESSING_DELETED_CONTACTS

public static final UploadServerContacts.InternalState PROCESSING_DELETED_CONTACTS
Internal state when processing deleted contacts.


PROCESSING_DELETED_DETAILS

public static final UploadServerContacts.InternalState PROCESSING_DELETED_DETAILS
Internal state when processing deleted details.


PROCESSING_GROUP_ADDITIONS

public static final UploadServerContacts.InternalState PROCESSING_GROUP_ADDITIONS
Internal state when processing group additions.


PROCESSING_GROUP_DELETIONS

public static final UploadServerContacts.InternalState PROCESSING_GROUP_DELETIONS
Internal state when processing group deletions.

Method Detail

values

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

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

valueOf

public static UploadServerContacts.InternalState 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