dk.netarkivet.harvester.webinterface
Enum HarvestStatusQuery.SORT_ORDER

java.lang.Object
  extended by java.lang.Enum<HarvestStatusQuery.SORT_ORDER>
      extended by dk.netarkivet.harvester.webinterface.HarvestStatusQuery.SORT_ORDER
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HarvestStatusQuery.SORT_ORDER>
Enclosing class:
HarvestStatusQuery

public static enum HarvestStatusQuery.SORT_ORDER
extends java.lang.Enum<HarvestStatusQuery.SORT_ORDER>

Enum class defining the different sort-orders.


Enum Constant Summary
ASC
          Ascending mode.
DESC
          Descending mode.
 
Method Summary
static HarvestStatusQuery.SORT_ORDER parse(java.lang.String order)
          Parse the given argument and return a sorting order.
static HarvestStatusQuery.SORT_ORDER valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HarvestStatusQuery.SORT_ORDER[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ASC

public static final HarvestStatusQuery.SORT_ORDER ASC
Ascending mode. From lowest to highest.


DESC

public static final HarvestStatusQuery.SORT_ORDER DESC
Descending mode. From highest to lowest.

Method Detail

values

public static HarvestStatusQuery.SORT_ORDER[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (HarvestStatusQuery.SORT_ORDER c : HarvestStatusQuery.SORT_ORDER.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static HarvestStatusQuery.SORT_ORDER valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

parse

public static HarvestStatusQuery.SORT_ORDER parse(java.lang.String order)
Parse the given argument and return a sorting order.

Parameters:
order - a given sorting order as string
Returns:
a sorting order representing the given string.