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