public static enum Visit.Sort extends Enum<Visit.Sort>
Enum Constant and Description |
---|
Default |
Level |
Members |
Players |
Visits |
Votes |
Modifier and Type | Method and Description |
---|---|
static Visit.Sort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Visit.Sort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Visit.Sort Default
public static final Visit.Sort Players
public static final Visit.Sort Level
public static final Visit.Sort Members
public static final Visit.Sort Visits
public static final Visit.Sort Votes
public static Visit.Sort[] values()
for (Visit.Sort c : Visit.Sort.values()) System.out.println(c);
public static Visit.Sort 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 © 2018. All rights reserved.