edu.cmu.sun.controller
Enum FoldViewController.Position

java.lang.Object
  extended by java.lang.Enum<FoldViewController.Position>
      extended by edu.cmu.sun.controller.FoldViewController.Position
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FoldViewController.Position>
Enclosing class:
FoldViewController

private static enum FoldViewController.Position
extends java.lang.Enum<FoldViewController.Position>

DIRECTLY_ABOVE is the fold that is directly above the main list portion. DIRECTLY_BELOW is the fold that is directly below the main list portion. SEPERATE are any other folds in the list.


Enum Constant Summary
DIRECTLY_ABOVE
           
DIRECTLY_BELOW
           
SEPERATE
           
 
Method Summary
static FoldViewController.Position valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FoldViewController.Position[] 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

SEPERATE

public static final FoldViewController.Position SEPERATE

DIRECTLY_ABOVE

public static final FoldViewController.Position DIRECTLY_ABOVE

DIRECTLY_BELOW

public static final FoldViewController.Position DIRECTLY_BELOW
Method Detail

values

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

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

valueOf

public static FoldViewController.Position 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