org.apache.camel.component.salesforce.internal
Enum OperationName

java.lang.Object
  extended by java.lang.Enum<OperationName>
      extended by org.apache.camel.component.salesforce.internal.OperationName
All Implemented Interfaces:
Serializable, Comparable<OperationName>

public enum OperationName
extends Enum<OperationName>


Enum Constant Summary
ABORT_JOB
           
CLOSE_JOB
           
CREATE_BATCH
           
CREATE_BATCH_QUERY
           
CREATE_JOB
           
CREATE_SOBJECT
           
DELETE_SOBJECT
           
DELETE_SOBJECT_WITH_ID
           
GET_ALL_BATCHES
           
GET_BASIC_INFO
           
GET_BATCH
           
GET_BLOB_FIELD
           
GET_DESCRIPTION
           
GET_GLOBAL_OBJECTS
           
GET_JOB
           
GET_QUERY_RESULT
           
GET_QUERY_RESULT_IDS
           
GET_REQUEST
           
GET_RESOURCES
           
GET_RESULTS
           
GET_SOBJECT
           
GET_SOBJECT_WITH_ID
           
GET_VERSIONS
           
QUERY
           
QUERY_MORE
           
SEARCH
           
UPDATE_SOBJECT
           
UPSERT_SOBJECT
           
 
Method Summary
static OperationName fromValue(String value)
           
 String value()
           
static OperationName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OperationName[] 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

GET_VERSIONS

public static final OperationName GET_VERSIONS

GET_RESOURCES

public static final OperationName GET_RESOURCES

GET_GLOBAL_OBJECTS

public static final OperationName GET_GLOBAL_OBJECTS

GET_BASIC_INFO

public static final OperationName GET_BASIC_INFO

GET_DESCRIPTION

public static final OperationName GET_DESCRIPTION

GET_SOBJECT

public static final OperationName GET_SOBJECT

CREATE_SOBJECT

public static final OperationName CREATE_SOBJECT

UPDATE_SOBJECT

public static final OperationName UPDATE_SOBJECT

DELETE_SOBJECT

public static final OperationName DELETE_SOBJECT

GET_SOBJECT_WITH_ID

public static final OperationName GET_SOBJECT_WITH_ID

UPSERT_SOBJECT

public static final OperationName UPSERT_SOBJECT

DELETE_SOBJECT_WITH_ID

public static final OperationName DELETE_SOBJECT_WITH_ID

GET_BLOB_FIELD

public static final OperationName GET_BLOB_FIELD

QUERY

public static final OperationName QUERY

QUERY_MORE

public static final OperationName QUERY_MORE

SEARCH

public static final OperationName SEARCH

CREATE_JOB

public static final OperationName CREATE_JOB

GET_JOB

public static final OperationName GET_JOB

CLOSE_JOB

public static final OperationName CLOSE_JOB

ABORT_JOB

public static final OperationName ABORT_JOB

CREATE_BATCH

public static final OperationName CREATE_BATCH

GET_BATCH

public static final OperationName GET_BATCH

GET_ALL_BATCHES

public static final OperationName GET_ALL_BATCHES

GET_REQUEST

public static final OperationName GET_REQUEST

GET_RESULTS

public static final OperationName GET_RESULTS

CREATE_BATCH_QUERY

public static final OperationName CREATE_BATCH_QUERY

GET_QUERY_RESULT_IDS

public static final OperationName GET_QUERY_RESULT_IDS

GET_QUERY_RESULT

public static final OperationName GET_QUERY_RESULT
Method Detail

values

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

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

valueOf

public static OperationName valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static OperationName fromValue(String value)


Apache Camel