Enum ShowPlan.ShowContentType
- java.lang.Object
-
- java.lang.Enum<ShowPlan.ShowContentType>
-
- org.apache.iotdb.db.qp.physical.sys.ShowPlan.ShowContentType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ShowPlan.ShowContentType>
- Enclosing class:
- ShowPlan
public static enum ShowPlan.ShowContentType extends java.lang.Enum<ShowPlan.ShowContentType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShowPlan.ShowContentTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ShowPlan.ShowContentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FLUSH_TASK_INFO
public static final ShowPlan.ShowContentType FLUSH_TASK_INFO
-
TTL
public static final ShowPlan.ShowContentType TTL
-
VERSION
public static final ShowPlan.ShowContentType VERSION
-
TIMESERIES
public static final ShowPlan.ShowContentType TIMESERIES
-
STORAGE_GROUP
public static final ShowPlan.ShowContentType STORAGE_GROUP
-
CHILD_PATH
public static final ShowPlan.ShowContentType CHILD_PATH
-
CHILD_NODE
public static final ShowPlan.ShowContentType CHILD_NODE
-
DEVICES
public static final ShowPlan.ShowContentType DEVICES
-
COUNT_TIMESERIES
public static final ShowPlan.ShowContentType COUNT_TIMESERIES
-
COUNT_NODE_TIMESERIES
public static final ShowPlan.ShowContentType COUNT_NODE_TIMESERIES
-
COUNT_NODES
public static final ShowPlan.ShowContentType COUNT_NODES
-
FUNCTIONS
public static final ShowPlan.ShowContentType FUNCTIONS
-
COUNT_DEVICES
public static final ShowPlan.ShowContentType COUNT_DEVICES
-
COUNT_STORAGE_GROUP
public static final ShowPlan.ShowContentType COUNT_STORAGE_GROUP
-
QUERY_PROCESSLIST
public static final ShowPlan.ShowContentType QUERY_PROCESSLIST
-
TRIGGERS
public static final ShowPlan.ShowContentType TRIGGERS
-
LOCK_INFO
public static final ShowPlan.ShowContentType LOCK_INFO
-
CONTINUOUS_QUERY
public static final ShowPlan.ShowContentType CONTINUOUS_QUERY
-
QUERY_RESOURCE
public static final ShowPlan.ShowContentType QUERY_RESOURCE
-
SCHEMA_TEMPLATE
public static final ShowPlan.ShowContentType SCHEMA_TEMPLATE
-
NODES_IN_SCHEMA_TEMPLATE
public static final ShowPlan.ShowContentType NODES_IN_SCHEMA_TEMPLATE
-
PATHS_SET_SCHEMA_TEMPLATE
public static final ShowPlan.ShowContentType PATHS_SET_SCHEMA_TEMPLATE
-
PATHS_USING_SCHEMA_TEMPLATE
public static final ShowPlan.ShowContentType PATHS_USING_SCHEMA_TEMPLATE
-
PIPESINK
public static final ShowPlan.ShowContentType PIPESINK
-
PIPESINKTYPE
public static final ShowPlan.ShowContentType PIPESINKTYPE
-
PIPE
public static final ShowPlan.ShowContentType PIPE
-
-
Method Detail
-
values
public static ShowPlan.ShowContentType[] 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 (ShowPlan.ShowContentType c : ShowPlan.ShowContentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShowPlan.ShowContentType 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
-
-