Enum OperationName

    • Enum Constant Detail

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

        public static final OperationName GET_ALL_BATCHES
      • 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_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
      • 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
    • 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()