public enum Total extends Enum<Total>
AttributeInGrid| Modifier and Type | Method and Description |
|---|---|
static Total |
of(String total) |
static List<Total> |
orderedValues()
Ordered list of totals
|
String |
toString() |
static Total |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Total[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Total SUM
public static final Total AVG
public static final Total MAX
public static final Total MIN
public static final Total NAT
public static final Total MED
public static Total[] values()
for (Total c : Total.values()) System.out.println(c);
public static Total 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.