public static enum AggregationNode.Step extends Enum<AggregationNode.Step>
| Enum Constant and Description |
|---|
FINAL |
INTERMEDIATE |
PARTIAL |
SINGLE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isInputRaw() |
boolean |
isOutputPartial() |
static AggregationNode.Step |
partialInput(AggregationNode.Step step) |
static AggregationNode.Step |
partialOutput(AggregationNode.Step step) |
static AggregationNode.Step |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationNode.Step[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationNode.Step PARTIAL
public static final AggregationNode.Step FINAL
public static final AggregationNode.Step INTERMEDIATE
public static final AggregationNode.Step SINGLE
public static AggregationNode.Step[] values()
for (AggregationNode.Step c : AggregationNode.Step.values()) System.out.println(c);
public static AggregationNode.Step 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 nullpublic boolean isInputRaw()
public boolean isOutputPartial()
public static AggregationNode.Step partialOutput(AggregationNode.Step step)
public static AggregationNode.Step partialInput(AggregationNode.Step step)
Copyright © 2012–2022. All rights reserved.