public enum ConnectionHealthChecking extends Enum<ConnectionHealthChecking>
| Modifier and Type | Method and Description |
|---|---|
static ConnectionHealthChecking |
fromValue(String value) |
String |
toString() |
String |
value() |
static ConnectionHealthChecking |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionHealthChecking[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionHealthChecking ENABLED
public static final ConnectionHealthChecking DISABLED
public static ConnectionHealthChecking[] values()
for (ConnectionHealthChecking c : ConnectionHealthChecking.values()) System.out.println(c);
public static ConnectionHealthChecking valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ConnectionHealthChecking fromValue(String value)
public String toString()
toString in class Enum<ConnectionHealthChecking>public String value()