public static enum DoubleSummary.Mode extends Enum<DoubleSummary.Mode>
| Enum Constant and Description |
|---|
Max
The aggregation mode is the maximum function
|
Min
The aggregation mode is the minimum function
|
Sum
The aggregation mode is the summation function
|
| Modifier and Type | Method and Description |
|---|---|
static DoubleSummary.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoubleSummary.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleSummary.Mode Sum
public static final DoubleSummary.Mode Min
public static final DoubleSummary.Mode Max
public static DoubleSummary.Mode[] values()
for (DoubleSummary.Mode c : DoubleSummary.Mode.values()) System.out.println(c);
public static DoubleSummary.Mode 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 © 2015–2017 Yahoo! Inc.. All rights reserved.