Package org.apache.iotdb.db.conf
Enum OperationType
- java.lang.Object
-
- java.lang.Enum<OperationType>
-
- org.apache.iotdb.db.conf.OperationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OperationType>
public enum OperationType extends java.lang.Enum<OperationType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()java.lang.StringtoString()static OperationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
FETCH_RESULTS
public static final OperationType FETCH_RESULTS
-
EXECUTE_UPDATE_STATEMENT
public static final OperationType EXECUTE_UPDATE_STATEMENT
-
GET_TIME_ZONE
public static final OperationType GET_TIME_ZONE
-
SET_TIME_ZONE
public static final OperationType SET_TIME_ZONE
-
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_RECORD
public static final OperationType INSERT_RECORD
-
INSERT_STRING_RECORD
public static final OperationType INSERT_STRING_RECORD
-
DELETE_DATA
public static final OperationType DELETE_DATA
-
INSERT_TABLET
public static final OperationType INSERT_TABLET
-
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 namejava.lang.NullPointerException- if the argument is null
-
getName
public java.lang.String getName()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<OperationType>
-
-