Package com.clickhouse.client
Enum ClickHouseNode.Status
- java.lang.Object
-
- java.lang.Enum<ClickHouseNode.Status>
-
- com.clickhouse.client.ClickHouseNode.Status
-
- All Implemented Interfaces:
Serializable,Comparable<ClickHouseNode.Status>
- Enclosing class:
- ClickHouseNode
public static enum ClickHouseNode.Status extends Enum<ClickHouseNode.Status>
Node status.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClickHouseNode.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ClickHouseNode.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEALTHY
public static final ClickHouseNode.Status HEALTHY
-
UNHEALTHY
public static final ClickHouseNode.Status UNHEALTHY
-
MANAGED
public static final ClickHouseNode.Status MANAGED
-
UNMANAGED
public static final ClickHouseNode.Status UNMANAGED
-
-
Method Detail
-
values
public static ClickHouseNode.Status[] 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 (ClickHouseNode.Status c : ClickHouseNode.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClickHouseNode.Status 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
-
-