Enum Class BalancerSelfHealMode
- All Implemented Interfaces:
Serializable,Comparable<BalancerSelfHealMode>,Constable
The status of how Confluent Balancer component self-heals.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe state when Balancer self-heals on any variationThe state when Balancer self-heals only when brokers arriveClients will fall back to this status when they receive an unrecognized status value. -
Method Summary
Modifier and TypeMethodDescriptionstatic BalancerSelfHealModestatic BalancerSelfHealModeReturns the enum constant of this class with the specified name.static BalancerSelfHealMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
EMPTY_BROKER
The state when Balancer self-heals only when brokers arrive -
ANY_UNEVEN_LOAD
The state when Balancer self-heals on any variation -
UNKNOWN
Clients will fall back to this status when they receive an unrecognized status value.- Since:
- 7.3.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toEnum
-