Enum ClickHouseHealthCheckMethod

java.lang.Object
java.lang.Enum<ClickHouseHealthCheckMethod>
com.clickhouse.client.config.ClickHouseHealthCheckMethod
All Implemented Interfaces:
Serializable, Comparable<ClickHouseHealthCheckMethod>, java.lang.constant.Constable

public enum ClickHouseHealthCheckMethod extends Enum<ClickHouseHealthCheckMethod>
  • Enum Constant Details

    • PING

      public static final ClickHouseHealthCheckMethod PING
      Ping is the protocol-specific approach for health check, which in general is faster.
    • SELECT_ONE

      public static final ClickHouseHealthCheckMethod SELECT_ONE
      Issue query "select 1" for health check, slightly slower compare to ping but works the best with 3party tools.
  • Method Details

    • values

      public static ClickHouseHealthCheckMethod[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ClickHouseHealthCheckMethod 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 name
      NullPointerException - if the argument is null