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