java.io.Serializable, java.lang.Comparable<Project.OrderedBy>public static enum Project.OrderedBy extends java.lang.Enum<Project.OrderedBy> implements java.io.Serializable
Project.getAll(OrderedBy)| Enum Constant | Description |
|---|---|
CREATION_DATE |
Nach Erstellungsdatum sortieren (Neuestes zuerst).
|
RATING |
Nach Bewertung sortieren (Höhere Bewertung zuerst).
|
UPDATE_DATE |
Nach Datum des letzten Updates sortieren (Neuestes zuerst).
|
| Modifier and Type | Method | Description |
|---|---|---|
static Project.OrderedBy |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Project.OrderedBy[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Project.OrderedBy CREATION_DATE
Project.creationDatepublic static final Project.OrderedBy UPDATE_DATE
Project.lastUpdateDatepublic static final Project.OrderedBy RATING
Project.ratingpublic static Project.OrderedBy[] values()
for (Project.OrderedBy c : Project.OrderedBy.values()) System.out.println(c);
public static Project.OrderedBy 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