Package com.atlassian.confluence.cluster
Enum ClusterJoinConfig.ClusterJoinType
- java.lang.Object
-
- java.lang.Enum<ClusterJoinConfig.ClusterJoinType>
-
- com.atlassian.confluence.cluster.ClusterJoinConfig.ClusterJoinType
-
- All Implemented Interfaces:
Serializable
,Comparable<ClusterJoinConfig.ClusterJoinType>
- Enclosing interface:
- ClusterJoinConfig
public static enum ClusterJoinConfig.ClusterJoinType extends Enum<ClusterJoinConfig.ClusterJoinType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS
KUBERNETES
MULTICAST
NONE
TCP_IP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClusterJoinConfig.ClusterJoinType
fromString(String text)
String
getHumanReadableName()
String
getText()
static ClusterJoinConfig.ClusterJoinType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClusterJoinConfig.ClusterJoinType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ClusterJoinConfig.ClusterJoinType NONE
-
MULTICAST
public static final ClusterJoinConfig.ClusterJoinType MULTICAST
-
TCP_IP
public static final ClusterJoinConfig.ClusterJoinType TCP_IP
-
AWS
public static final ClusterJoinConfig.ClusterJoinType AWS
-
KUBERNETES
public static final ClusterJoinConfig.ClusterJoinType KUBERNETES
-
-
Method Detail
-
values
public static ClusterJoinConfig.ClusterJoinType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ClusterJoinConfig.ClusterJoinType c : ClusterJoinConfig.ClusterJoinType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClusterJoinConfig.ClusterJoinType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getHumanReadableName
public String getHumanReadableName()
- Since:
- 7.0
-
getText
public String getText()
-
fromString
public static ClusterJoinConfig.ClusterJoinType fromString(String text)
-
-