public static enum ContributorComparator.Criteria extends java.lang.Enum<ContributorComparator.Criteria>
Enum Constant and Description |
---|
EMAIL |
FIRST_NAMES |
FULLNAME |
ID |
LAST_NAME |
LASTCONNECTION |
Modifier and Type | Method and Description |
---|---|
static ContributorComparator.Criteria |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContributorComparator.Criteria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContributorComparator.Criteria ID
public static final ContributorComparator.Criteria EMAIL
public static final ContributorComparator.Criteria FIRST_NAMES
public static final ContributorComparator.Criteria FULLNAME
public static final ContributorComparator.Criteria LAST_NAME
public static final ContributorComparator.Criteria LASTCONNECTION
public static ContributorComparator.Criteria[] values()
for (ContributorComparator.Criteria c : ContributorComparator.Criteria.values()) System.out.println(c);
public static ContributorComparator.Criteria 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 null