dk.netarkivet.harvester.webinterface
Enum HarvestStatusRunningTablesSort.ColumnId

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

public static enum HarvestStatusRunningTablesSort.ColumnId
extends java.lang.Enum<HarvestStatusRunningTablesSort.ColumnId>

list of the column id.


Enum Constant Summary
ACTIVEQ
           
ELAPSED
           
EXHAUSTEDQ
           
HOST
           
ID
           
NONE
           
PROGRESS
           
QFILES
           
RETIREDQ
           
TOTALQ
           
 
Method Summary
static HarvestStatusRunningTablesSort.ColumnId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HarvestStatusRunningTablesSort.ColumnId[] 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

NONE

public static final HarvestStatusRunningTablesSort.ColumnId NONE

ID

public static final HarvestStatusRunningTablesSort.ColumnId ID

HOST

public static final HarvestStatusRunningTablesSort.ColumnId HOST

PROGRESS

public static final HarvestStatusRunningTablesSort.ColumnId PROGRESS

ELAPSED

public static final HarvestStatusRunningTablesSort.ColumnId ELAPSED

QFILES

public static final HarvestStatusRunningTablesSort.ColumnId QFILES

TOTALQ

public static final HarvestStatusRunningTablesSort.ColumnId TOTALQ

ACTIVEQ

public static final HarvestStatusRunningTablesSort.ColumnId ACTIVEQ

EXHAUSTEDQ

public static final HarvestStatusRunningTablesSort.ColumnId EXHAUSTEDQ

RETIREDQ

public static final HarvestStatusRunningTablesSort.ColumnId RETIREDQ
Method Detail

values

public static HarvestStatusRunningTablesSort.ColumnId[] 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 (HarvestStatusRunningTablesSort.ColumnId c : HarvestStatusRunningTablesSort.ColumnId.values())
    System.out.println(c);

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

valueOf

public static HarvestStatusRunningTablesSort.ColumnId 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