public static enum Summary.SummaryOrder extends java.lang.Enum<Summary.SummaryOrder>
| Enum Constant and Description |
|---|
chronological |
ranked |
| Modifier and Type | Method and Description |
|---|---|
static Summary.SummaryOrder |
getInstance(java.lang.String logic) |
static Summary.SummaryOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Summary.SummaryOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Summary.SummaryOrder ranked
public static final Summary.SummaryOrder chronological
public static Summary.SummaryOrder[] values()
for (Summary.SummaryOrder c : Summary.SummaryOrder.values()) System.out.println(c);
public static Summary.SummaryOrder valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static Summary.SummaryOrder getInstance(java.lang.String logic)