public static enum MergeJoinStrategy.SortOption extends Enum<MergeJoinStrategy.SortOption>
Enum Constant and Description |
---|
ALREADY_SORTED |
NOT_SORTED |
SORT |
SORT_DISTINCT |
Modifier and Type | Method and 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.
|
public static final MergeJoinStrategy.SortOption ALREADY_SORTED
public static final MergeJoinStrategy.SortOption SORT
public static final MergeJoinStrategy.SortOption SORT_DISTINCT
public static final MergeJoinStrategy.SortOption NOT_SORTED
public static MergeJoinStrategy.SortOption[] values()
for (MergeJoinStrategy.SortOption c : MergeJoinStrategy.SortOption.values()) System.out.println(c);
public static MergeJoinStrategy.SortOption valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.