Enum MergeJoinStrategy.SortOption
- java.lang.Object
-
- java.lang.Enum<MergeJoinStrategy.SortOption>
-
- org.teiid.query.processor.relational.MergeJoinStrategy.SortOption
-
- All Implemented Interfaces:
Serializable
,Comparable<MergeJoinStrategy.SortOption>
- Enclosing class:
- MergeJoinStrategy
public static enum MergeJoinStrategy.SortOption extends Enum<MergeJoinStrategy.SortOption>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADY_SORTED
NOT_SORTED
SORT
SORT_DISTINCT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MergeJoinStrategy.SortOption
valueOf(String name)
Returns the enum constant of this type with the specified name.static MergeJoinStrategy.SortOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALREADY_SORTED
public static final MergeJoinStrategy.SortOption ALREADY_SORTED
-
SORT
public static final MergeJoinStrategy.SortOption SORT
-
SORT_DISTINCT
public static final MergeJoinStrategy.SortOption SORT_DISTINCT
-
NOT_SORTED
public static final MergeJoinStrategy.SortOption NOT_SORTED
-
-
Method Detail
-
values
public static MergeJoinStrategy.SortOption[] 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 (MergeJoinStrategy.SortOption c : MergeJoinStrategy.SortOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MergeJoinStrategy.SortOption 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
-
-