com.hcl.voltmx.sync.services.syncruntime.config
Enum Enums.RequestStatus

java.lang.Object
  extended by java.lang.Enum<Enums.RequestStatus>
      extended by com.hcl.voltmx.sync.services.syncruntime.config.Enums.RequestStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Enums.RequestStatus>
Enclosing class:
Enums

public static enum Enums.RequestStatus
extends java.lang.Enum<Enums.RequestStatus>

Enumeration types for the request status


Enum Constant Summary
Completed
          Enumeration value indicates all the entities in request has been merged with data source
Downloaded
           
Stalled
          Enumeration value indicates the error while processing the merge with data source
Submitted
          Enumeration value indicates client request has been submitted to sync
Uploaded
          Enumeration value indicates all the entities in request has been uploaded
Uploaded_Client
           
 
Method Summary
static Enums.RequestStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Enums.RequestStatus[] 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

Submitted

public static final Enums.RequestStatus Submitted
Enumeration value indicates client request has been submitted to sync


Uploaded

public static final Enums.RequestStatus Uploaded
Enumeration value indicates all the entities in request has been uploaded


Downloaded

public static final Enums.RequestStatus Downloaded

Uploaded_Client

public static final Enums.RequestStatus Uploaded_Client

Completed

public static final Enums.RequestStatus Completed
Enumeration value indicates all the entities in request has been merged with data source


Stalled

public static final Enums.RequestStatus Stalled
Enumeration value indicates the error while processing the merge with data source

Method Detail

values

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

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

valueOf

public static Enums.RequestStatus 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