public enum SummaryOperations extends Enum<SummaryOperations>
| Enum Constant and Description |
|---|
count
Enumeration : count
|
max
Enumeration : max
|
min
Enumeration : min
|
sum
Enumeration : sum
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SummaryOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SummaryOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SummaryOperations count
public static final SummaryOperations sum
public static final SummaryOperations min
public static final SummaryOperations max
public static SummaryOperations[] values()
for (SummaryOperations c : SummaryOperations.values()) System.out.println(c);
public static SummaryOperations 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 String toString()
toString in class Enum<SummaryOperations>Copyright © 2017. All Rights Reserved.