public enum ValueOperationType extends Enum<ValueOperationType>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ValueOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueOperationType AVG
public static final ValueOperationType SUM
public static final ValueOperationType MAX
public static final ValueOperationType MIN
public static ValueOperationType[] values()
for (ValueOperationType c : ValueOperationType.values()) System.out.println(c);
public static ValueOperationType 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<ValueOperationType>Copyright © 2019. All Rights Reserved.