Enum CollocationModelAffinity
- java.lang.Object
-
- java.lang.Enum<CollocationModelAffinity>
-
- org.apache.ignite.internal.processors.query.h2.opt.join.CollocationModelAffinity
-
- All Implemented Interfaces:
Serializable,Comparable<CollocationModelAffinity>
public enum CollocationModelAffinity extends Enum<CollocationModelAffinity>
Affinity of a table relative to previous joined tables.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLLOCATED_JOINHAS_AFFINITY_CONDITIONNONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CollocationModelAffinityvalueOf(String name)Returns the enum constant of this type with the specified name.static CollocationModelAffinity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CollocationModelAffinity NONE
-
HAS_AFFINITY_CONDITION
public static final CollocationModelAffinity HAS_AFFINITY_CONDITION
-
COLLOCATED_JOIN
public static final CollocationModelAffinity COLLOCATED_JOIN
-
-
Method Detail
-
values
public static CollocationModelAffinity[] 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 (CollocationModelAffinity c : CollocationModelAffinity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CollocationModelAffinity 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
-
-