public enum JobType extends Enum<JobType>
| Enum Constant and Description |
|---|
EXPAND_BROKER_DISK_CAPACITY |
INCREASE_BROKER_COUNT |
REASSIGN_PARTITION |
RESTART_BROKER |
RESTART_KAFKA_CLUSTER |
UPDATE_ACCESS_CONFIG |
UPDATE_BROKER_NODE_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static JobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobType UPDATE_ACCESS_CONFIG
public static final JobType REASSIGN_PARTITION
public static final JobType RESTART_KAFKA_CLUSTER
public static final JobType RESTART_BROKER
public static final JobType EXPAND_BROKER_DISK_CAPACITY
public static final JobType UPDATE_BROKER_NODE_TYPE
public static final JobType INCREASE_BROKER_COUNT
public static JobType[] values()
for (JobType c : JobType.values()) System.out.println(c);
public static JobType 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 nullCopyright © 2024. All rights reserved.