Package org.apache.iotdb.metrics.utils
Enum SystemTag
- java.lang.Object
-
- java.lang.Enum<SystemTag>
-
- org.apache.iotdb.metrics.utils.SystemTag
-
- All Implemented Interfaces:
Serializable,Comparable<SystemTag>
public enum SystemTag extends Enum<SystemTag>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static SystemTagvalueOf(String name)Returns the enum constant of this type with the specified name.static SystemTag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final SystemTag TYPE
-
NAME
public static final SystemTag NAME
-
FROM
public static final SystemTag FROM
-
POOL
public static final SystemTag POOL
-
POOL_NAME
public static final SystemTag POOL_NAME
-
MODULE
public static final SystemTag MODULE
-
DISK
public static final SystemTag DISK
-
ID
public static final SystemTag ID
-
AREA
public static final SystemTag AREA
-
COMPILER
public static final SystemTag COMPILER
-
STATE
public static final SystemTag STATE
-
IFACE_NAME
public static final SystemTag IFACE_NAME
-
PROCESS_NAME
public static final SystemTag PROCESS_NAME
-
-
Method Detail
-
values
public static SystemTag[] 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 (SystemTag c : SystemTag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemTag 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 nameNullPointerException- if the argument is null
-
-