Enum PartitionAffinityFunctionType
- java.lang.Object
-
- java.lang.Enum<PartitionAffinityFunctionType>
-
- org.apache.ignite.internal.sql.optimizer.affinity.PartitionAffinityFunctionType
-
- All Implemented Interfaces:
Serializable,Comparable<PartitionAffinityFunctionType>
public enum PartitionAffinityFunctionType extends Enum<PartitionAffinityFunctionType>
Affinity function type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMCustom affintiy function.RENDEZVOUSRendezvous affinity function.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intvalue()static PartitionAffinityFunctionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PartitionAffinityFunctionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM
public static final PartitionAffinityFunctionType CUSTOM
Custom affintiy function.
-
RENDEZVOUS
public static final PartitionAffinityFunctionType RENDEZVOUS
Rendezvous affinity function.
-
-
Method Detail
-
values
public static PartitionAffinityFunctionType[] 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 (PartitionAffinityFunctionType c : PartitionAffinityFunctionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PartitionAffinityFunctionType 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
-
value
public int value()
- Returns:
- Value.
-
-