public enum ClusterJoinMode extends Enum<ClusterJoinMode>
initiating the connection to another node or accepting
a connection from another node.| Modifier and Type | Method and Description |
|---|---|
static ClusterJoinMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClusterJoinMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusterJoinMode ACCEPT
public static final ClusterJoinMode CONNECT
public static ClusterJoinMode[] values()
for (ClusterJoinMode c : ClusterJoinMode.values()) System.out.println(c);
public static ClusterJoinMode 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 © 2003–2022 Atlassian. All rights reserved.