public static enum HashAggregator.AggOutcome extends Enum<HashAggregator.AggOutcome>
| Enum Constant and Description |
|---|
CALL_WORK_AGAIN |
CLEANUP_AND_RETURN |
RETURN_OUTCOME |
UPDATE_AGGREGATOR |
| Modifier and Type | Method and Description |
|---|---|
static HashAggregator.AggOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashAggregator.AggOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashAggregator.AggOutcome RETURN_OUTCOME
public static final HashAggregator.AggOutcome CLEANUP_AND_RETURN
public static final HashAggregator.AggOutcome UPDATE_AGGREGATOR
public static final HashAggregator.AggOutcome CALL_WORK_AGAIN
public static HashAggregator.AggOutcome[] values()
for (HashAggregator.AggOutcome c : HashAggregator.AggOutcome.values()) System.out.println(c);
public static HashAggregator.AggOutcome 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 © 2021 The Apache Software Foundation. All rights reserved.