public enum AggregationStage extends Enum<AggregationStage>
| Modifier and Type | Method and Description |
|---|---|
static AggregationStage |
parse(String s) |
static AggregationStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationStage COLLECT
public static final AggregationStage TRANSFORM
public static AggregationStage[] values()
for (AggregationStage c : AggregationStage.values()) System.out.println(c);
public static AggregationStage 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 static AggregationStage parse(String s)
Copyright © 2025. All rights reserved.