Enum OperationType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<OperationType>

    public enum OperationType
    extends java.lang.Enum<OperationType>
    • Enum Constant Detail

      • CLOSE_OPERATION

        public static final OperationType CLOSE_OPERATION
      • FETCH_METADATA

        public static final OperationType FETCH_METADATA
      • EXECUTE_STATEMENT

        public static final OperationType EXECUTE_STATEMENT
      • EXECUTE_BATCH_STATEMENT

        public static final OperationType EXECUTE_BATCH_STATEMENT
      • EXECUTE_QUERY_STATEMENT

        public static final OperationType EXECUTE_QUERY_STATEMENT
      • EXECUTE_RAW_DATA_QUERY

        public static final OperationType EXECUTE_RAW_DATA_QUERY
      • EXECUTE_LAST_DATA_QUERY

        public static final OperationType EXECUTE_LAST_DATA_QUERY
      • EXECUTE_UPDATE_STATEMENT

        public static final OperationType EXECUTE_UPDATE_STATEMENT
      • INSERT_RECORDS

        public static final OperationType INSERT_RECORDS
      • INSERT_RECORDS_OF_ONE_DEVICE

        public static final OperationType INSERT_RECORDS_OF_ONE_DEVICE
      • INSERT_STRING_RECORDS_OF_ONE_DEVICE

        public static final OperationType INSERT_STRING_RECORDS_OF_ONE_DEVICE
      • INSERT_STRING_RECORDS

        public static final OperationType INSERT_STRING_RECORDS
      • INSERT_STRING_RECORD

        public static final OperationType INSERT_STRING_RECORD
      • INSERT_TABLETS

        public static final OperationType INSERT_TABLETS
      • SET_STORAGE_GROUP

        public static final OperationType SET_STORAGE_GROUP
      • DELETE_STORAGE_GROUPS

        public static final OperationType DELETE_STORAGE_GROUPS
      • CREATE_TIMESERIES

        public static final OperationType CREATE_TIMESERIES
      • CREATE_ALIGNED_TIMESERIES

        public static final OperationType CREATE_ALIGNED_TIMESERIES
      • CREATE_MULTI_TIMESERIES

        public static final OperationType CREATE_MULTI_TIMESERIES
      • DELETE_TIMESERIES

        public static final OperationType DELETE_TIMESERIES
      • CREATE_SCHEMA_TEMPLATE

        public static final OperationType CREATE_SCHEMA_TEMPLATE
      • CHECK_AUTHORITY

        public static final OperationType CHECK_AUTHORITY
      • EXECUTE_NON_QUERY_PLAN

        public static final OperationType EXECUTE_NON_QUERY_PLAN
    • Method Detail

      • values

        public static OperationType[] 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 (OperationType c : OperationType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OperationType 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
      • getName

        public java.lang.String getName()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<OperationType>