Enum Class OperationName

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

public enum OperationName extends Enum<OperationName>
  • Enum Constant Details

    • 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
    • QUERY_ALL

      public static final OperationName QUERY_ALL
    • APEX_CALL

      public static final OperationName APEX_CALL
    • RECENT

      public static final OperationName RECENT
    • 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
    • BULK2_CREATE_JOB

      public static final OperationName BULK2_CREATE_JOB
    • BULK2_GET_JOB

      public static final OperationName BULK2_GET_JOB
    • BULK2_CREATE_BATCH

      public static final OperationName BULK2_CREATE_BATCH
    • BULK2_CLOSE_JOB

      public static final OperationName BULK2_CLOSE_JOB
    • BULK2_ABORT_JOB

      public static final OperationName BULK2_ABORT_JOB
    • BULK2_DELETE_JOB

      public static final OperationName BULK2_DELETE_JOB
    • BULK2_GET_SUCCESSFUL_RESULTS

      public static final OperationName BULK2_GET_SUCCESSFUL_RESULTS
    • BULK2_GET_FAILED_RESULTS

      public static final OperationName BULK2_GET_FAILED_RESULTS
    • BULK2_GET_UNPROCESSED_RECORDS

      public static final OperationName BULK2_GET_UNPROCESSED_RECORDS
    • BULK2_GET_ALL_JOBS

      public static final OperationName BULK2_GET_ALL_JOBS
    • BULK2_CREATE_QUERY_JOB

      public static final OperationName BULK2_CREATE_QUERY_JOB
    • BULK2_GET_QUERY_JOB

      public static final OperationName BULK2_GET_QUERY_JOB
    • BULK2_GET_ALL_QUERY_JOBS

      public static final OperationName BULK2_GET_ALL_QUERY_JOBS
    • BULK2_GET_QUERY_JOB_RESULTS

      public static final OperationName BULK2_GET_QUERY_JOB_RESULTS
    • BULK2_ABORT_QUERY_JOB

      public static final OperationName BULK2_ABORT_QUERY_JOB
    • BULK2_DELETE_QUERY_JOB

      public static final OperationName BULK2_DELETE_QUERY_JOB
    • GET_RECENT_REPORTS

      public static final OperationName GET_RECENT_REPORTS
    • GET_REPORT_DESCRIPTION

      public static final OperationName GET_REPORT_DESCRIPTION
    • EXECUTE_SYNCREPORT

      public static final OperationName EXECUTE_SYNCREPORT
    • EXECUTE_ASYNCREPORT

      public static final OperationName EXECUTE_ASYNCREPORT
    • GET_REPORT_INSTANCES

      public static final OperationName GET_REPORT_INSTANCES
    • GET_REPORT_RESULTS

      public static final OperationName GET_REPORT_RESULTS
    • LIMITS

      public static final OperationName LIMITS
    • APPROVAL

      public static final OperationName APPROVAL
    • APPROVALS

      public static final OperationName APPROVALS
    • COMPOSITE

      public static final OperationName COMPOSITE
    • COMPOSITE_BATCH

      public static final OperationName COMPOSITE_BATCH
    • COMPOSITE_TREE

      public static final OperationName COMPOSITE_TREE
    • COMPOSITE_CREATE_SOBJECT_COLLECTIONS

      public static final OperationName COMPOSITE_CREATE_SOBJECT_COLLECTIONS
    • COMPOSITE_UPDATE_SOBJECT_COLLECTIONS

      public static final OperationName COMPOSITE_UPDATE_SOBJECT_COLLECTIONS
    • COMPOSITE_UPSERT_SOBJECT_COLLECTIONS

      public static final OperationName COMPOSITE_UPSERT_SOBJECT_COLLECTIONS
    • COMPOSITE_RETRIEVE_SOBJECT_COLLECTIONS

      public static final OperationName COMPOSITE_RETRIEVE_SOBJECT_COLLECTIONS
    • COMPOSITE_DELETE_SOBJECT_COLLECTIONS

      public static final OperationName COMPOSITE_DELETE_SOBJECT_COLLECTIONS
    • RAW

      public static final OperationName RAW
    • SUBSCRIBE

      public static final OperationName SUBSCRIBE
    • PUBSUB_PUBLISH

      public static final OperationName PUBSUB_PUBLISH
    • PUBSUB_SUBSCRIBE

      public static final OperationName PUBSUB_SUBSCRIBE
  • Method Details

    • values

      public static OperationName[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OperationName valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static OperationName fromValue(String value)