edu.cmu.sun.folds
Enum IndexRange.Overlap.Type

java.lang.Object
  extended by java.lang.Enum<IndexRange.Overlap.Type>
      extended by edu.cmu.sun.folds.IndexRange.Overlap.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IndexRange.Overlap.Type>
Enclosing class:
IndexRange.Overlap

public static enum IndexRange.Overlap.Type
extends java.lang.Enum<IndexRange.Overlap.Type>


Enum Constant Summary
DISJOINT
           
EXACT_MATCH
           
PARTIAL_OVERLAP
           
TOTAL_OVERLAP
           
 
Method Summary
static IndexRange.Overlap.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IndexRange.Overlap.Type[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EXACT_MATCH

public static final IndexRange.Overlap.Type EXACT_MATCH

TOTAL_OVERLAP

public static final IndexRange.Overlap.Type TOTAL_OVERLAP

PARTIAL_OVERLAP

public static final IndexRange.Overlap.Type PARTIAL_OVERLAP

DISJOINT

public static final IndexRange.Overlap.Type DISJOINT
Method Detail

values

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

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

valueOf

public static IndexRange.Overlap.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