tuffy.ra
Enum ConjunctiveQuery.CLUSTERING_RULE_TYPE

java.lang.Object
  extended by java.lang.Enum<ConjunctiveQuery.CLUSTERING_RULE_TYPE>
      extended by tuffy.ra.ConjunctiveQuery.CLUSTERING_RULE_TYPE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ConjunctiveQuery.CLUSTERING_RULE_TYPE>
Enclosing class:
ConjunctiveQuery

public static enum ConjunctiveQuery.CLUSTERING_RULE_TYPE
extends java.lang.Enum<ConjunctiveQuery.CLUSTERING_RULE_TYPE>

Type used by CC.


Enum Constant Summary
CLASS_TAGS
           
COULD_LINK_CLIQUE
           
COULD_LINK_PAIRWISE
           
HARD
           
HARD_NEGATIVE
           
MUST_LINK_CLIQUE
           
NODE_CLASS
           
NODE_LIST
           
SOFT_COMPLETE
           
SOFT_INCOMPLETE
           
SOFT_NEGATIVE
           
WOULD_LINK_CLIQUE
           
 
Method Summary
static ConjunctiveQuery.CLUSTERING_RULE_TYPE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConjunctiveQuery.CLUSTERING_RULE_TYPE[] 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

SOFT_COMPLETE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE SOFT_COMPLETE

SOFT_INCOMPLETE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE SOFT_INCOMPLETE

HARD

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE HARD

COULD_LINK_CLIQUE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE COULD_LINK_CLIQUE

MUST_LINK_CLIQUE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE MUST_LINK_CLIQUE

COULD_LINK_PAIRWISE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE COULD_LINK_PAIRWISE

NODE_LIST

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE NODE_LIST

NODE_CLASS

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE NODE_CLASS

CLASS_TAGS

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE CLASS_TAGS

WOULD_LINK_CLIQUE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE WOULD_LINK_CLIQUE

SOFT_NEGATIVE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE SOFT_NEGATIVE

HARD_NEGATIVE

public static final ConjunctiveQuery.CLUSTERING_RULE_TYPE HARD_NEGATIVE
Method Detail

values

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

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

valueOf

public static ConjunctiveQuery.CLUSTERING_RULE_TYPE 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