public static enum ReduceOperatorBase.CombineHint extends Enum<ReduceOperatorBase.CombineHint>
Enum Constant and Description |
---|
HASH
Use a hash-based strategy.
|
NONE
Disable the use of a combiner.
|
OPTIMIZER_CHOOSES
Leave the choice how to do the combine to the optimizer.
|
SORT
Use a sort-based strategy.
|
Modifier and Type | Method and Description |
---|---|
static ReduceOperatorBase.CombineHint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReduceOperatorBase.CombineHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReduceOperatorBase.CombineHint OPTIMIZER_CHOOSES
public static final ReduceOperatorBase.CombineHint SORT
public static final ReduceOperatorBase.CombineHint HASH
public static final ReduceOperatorBase.CombineHint NONE
public static ReduceOperatorBase.CombineHint[] values()
for (ReduceOperatorBase.CombineHint c : ReduceOperatorBase.CombineHint.values()) System.out.println(c);
public static ReduceOperatorBase.CombineHint 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 © 2014–2024 The Apache Software Foundation. All rights reserved.