Package com.hazelcast.config
Enum PartitionGroupConfig.MemberGroupType
- java.lang.Object
-
- java.lang.Enum<PartitionGroupConfig.MemberGroupType>
-
- com.hazelcast.config.PartitionGroupConfig.MemberGroupType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PartitionGroupConfig.MemberGroupType>
- Enclosing class:
- PartitionGroupConfig
public static enum PartitionGroupConfig.MemberGroupType extends java.lang.Enum<PartitionGroupConfig.MemberGroupType>
Type of member groups.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM
Custom.HOST_AWARE
Host aware.NODE_AWARE
Node Aware.PER_MEMBER
Per member.PLACEMENT_AWARE
Placement Aware.SPI
MemberGroup implementation will be provided by the user via Discovery SPI.ZONE_AWARE
Zone Aware.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PartitionGroupConfig.MemberGroupType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PartitionGroupConfig.MemberGroupType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOST_AWARE
public static final PartitionGroupConfig.MemberGroupType HOST_AWARE
Host aware.
-
CUSTOM
public static final PartitionGroupConfig.MemberGroupType CUSTOM
Custom.
-
PER_MEMBER
public static final PartitionGroupConfig.MemberGroupType PER_MEMBER
Per member.
-
ZONE_AWARE
public static final PartitionGroupConfig.MemberGroupType ZONE_AWARE
Zone Aware. Backups will be created in other zones. If only one zone is available, backups will be created in the same zone.
-
NODE_AWARE
public static final PartitionGroupConfig.MemberGroupType NODE_AWARE
Node Aware. Backups will be created in other nodes. If only one node is available, backups will be created in the same node.
-
PLACEMENT_AWARE
public static final PartitionGroupConfig.MemberGroupType PLACEMENT_AWARE
Placement Aware. Backups will be created in other placement groups. If only one placement group is available, backups will be created in the same group.
-
SPI
public static final PartitionGroupConfig.MemberGroupType SPI
MemberGroup implementation will be provided by the user via Discovery SPI.
-
-
Method Detail
-
values
public static PartitionGroupConfig.MemberGroupType[] 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 (PartitionGroupConfig.MemberGroupType c : PartitionGroupConfig.MemberGroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PartitionGroupConfig.MemberGroupType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-