Package org.apache.kafka.common
Enum Class CellState
- All Implemented Interfaces:
Serializable
,Comparable<CellState>
,Constable
Represents the state of a cell, mostly indicating whether tenants can be moved in or out of a cell.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTenants cannot be moved in but can be moved out of the cellTenants cannot be moved in and out of the cellTenants can be moved in and out of the cellA cell is never in an UNKNOWN state, but a client can pass a state that is UNKNOWN which fails during validation. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbyte
code()
boolean
boolean
static CellState
toEnum
(byte code) static CellState
Returns the enum constant of this class with the specified name.static CellState[]
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
-
UNKNOWN
A cell is never in an UNKNOWN state, but a client can pass a state that is UNKNOWN which fails during validation. -
READY
Tenants can be moved in and out of the cell -
QUARANTINED
Tenants cannot be moved in and out of the cell -
EXCLUDED
Tenants cannot be moved in but can be moved out of the cell
-
-
Field Details
-
VALID_CELL_STATES
-
-
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
-
code
public byte code() -
isEligibleSource
public boolean isEligibleSource() -
isEligibleDestination
public boolean isEligibleDestination() -
toEnum
-