Enum Class Overview.OrderBy
- All Implemented Interfaces:
Serializable
,Comparable<Overview.OrderBy>
,java.lang.constant.Constable
- Enclosing class:
- Overview
Enumeration for the 'order by' setting
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionListed objects are sorted by nameListed objects are sorted by creation dateListed objects are sorted by edit dateListed objects are sorted by file size (only if listType is FILE or IMAGE)Listed objects are sorted by publish date (only if listType is PAGE)Listed objects are sorted by priority (only if listType is PAGE)Listed objects are sorted manuallyOverview is not defined -
Method Summary
Modifier and TypeMethodDescriptionstatic Overview.OrderBy
Returns the enum constant of this class with the specified name.static Overview.OrderBy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALPHABETICALLY
Listed objects are sorted by name -
PRIORITY
Listed objects are sorted by priority (only if listType is PAGE) -
PDATE
Listed objects are sorted by publish date (only if listType is PAGE) -
EDATE
Listed objects are sorted by edit date -
CDATE
Listed objects are sorted by creation date -
FILESIZE
Listed objects are sorted by file size (only if listType is FILE or IMAGE) -
SELF
Listed objects are sorted manually -
UNDEFINED
Overview is not defined
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-