public static enum SystemTable.Distribution extends Enum<SystemTable.Distribution>
| Enum Constant and Description |
|---|
ALL_COORDINATORS |
ALL_NODES |
SINGLE_COORDINATOR |
| Modifier and Type | Method and Description |
|---|---|
static SystemTable.Distribution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemTable.Distribution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemTable.Distribution ALL_NODES
public static final SystemTable.Distribution ALL_COORDINATORS
public static final SystemTable.Distribution SINGLE_COORDINATOR
public static SystemTable.Distribution[] values()
for (SystemTable.Distribution c : SystemTable.Distribution.values()) System.out.println(c);
public static SystemTable.Distribution 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 © 2012–2022. All rights reserved.