eTextReader.clientInterface
Enum Notation.ViewMode

java.lang.Object
  extended by java.lang.Enum<Notation.ViewMode>
      extended by eTextReader.clientInterface.Notation.ViewMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Notation.ViewMode>
Enclosing class:
Notation

public static enum Notation.ViewMode
extends java.lang.Enum<Notation.ViewMode>


Enum Constant Summary
INLINE
           
NULL
           
QUICK_NOTE
           
WINDOW
           
 
Field Summary
private static java.util.Hashtable<java.lang.String,Notation.ViewMode> names
           
 
Method Summary
static Notation.ViewMode getModeForName(java.lang.String name)
           
static Notation.ViewMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Notation.ViewMode[] 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

QUICK_NOTE

public static final Notation.ViewMode QUICK_NOTE

WINDOW

public static final Notation.ViewMode WINDOW

INLINE

public static final Notation.ViewMode INLINE

NULL

public static final Notation.ViewMode NULL
Field Detail

names

private static java.util.Hashtable<java.lang.String,Notation.ViewMode> names
Method Detail

values

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

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

valueOf

public static Notation.ViewMode 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

getModeForName

public static Notation.ViewMode getModeForName(java.lang.String name)