public enum RebalancingStatus extends Enum<RebalancingStatus>
| Enum Constant and Description |
|---|
COMPLETE |
IN_PROGRESS |
PENDING |
SUSPENDED |
| Modifier and Type | Method and Description |
|---|---|
static RebalancingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RebalancingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RebalancingStatus SUSPENDED
public static final RebalancingStatus PENDING
public static final RebalancingStatus IN_PROGRESS
public static final RebalancingStatus COMPLETE
public static RebalancingStatus[] values()
for (RebalancingStatus c : RebalancingStatus.values()) System.out.println(c);
public static RebalancingStatus 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 © 2025 JBoss, a division of Red Hat. All rights reserved.