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