org.kinsources.kiwa.kidarep
Enum CollaborationComparator.Criteria

java.lang.Object
  extended by java.lang.Enum<CollaborationComparator.Criteria>
      extended by org.kinsources.kiwa.kidarep.CollaborationComparator.Criteria
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CollaborationComparator.Criteria>
Enclosing class:
CollaborationComparator

public static enum CollaborationComparator.Criteria
extends java.lang.Enum<CollaborationComparator.Criteria>


Enum Constant Summary
COLLABORATOR_ID
           
COLLABORATOR_NAME
           
CREATION_DATE
           
DATASET_ID
           
DATASET_NAME
           
EDITION_DATE
           
 
Method Summary
static CollaborationComparator.Criteria valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CollaborationComparator.Criteria[] 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

COLLABORATOR_ID

public static final CollaborationComparator.Criteria COLLABORATOR_ID

COLLABORATOR_NAME

public static final CollaborationComparator.Criteria COLLABORATOR_NAME

CREATION_DATE

public static final CollaborationComparator.Criteria CREATION_DATE

DATASET_ID

public static final CollaborationComparator.Criteria DATASET_ID

DATASET_NAME

public static final CollaborationComparator.Criteria DATASET_NAME

EDITION_DATE

public static final CollaborationComparator.Criteria EDITION_DATE
Method Detail

values

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

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

valueOf

public static CollaborationComparator.Criteria 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