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