edu.jhu.tmaj.client.shared
Enum Preference

java.lang.Object
  extended by java.lang.Enum<Preference>
      extended by edu.jhu.tmaj.client.shared.Preference
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Preference>

public enum Preference
extends java.lang.Enum<Preference>


Enum Constant Summary
ALL_SESSIONS_DOWNLOAD_DIRECTORY
           
ARRAY_BLOCK_EXPORTER_DIRECTORY
           
ARRAY_IMAGE_IMPORT_DIRECTORY
           
COLOR_MASK_GUI_DIRECTORY
           
DEFAULT_LAST_DIRECTORY
           
DOT_TABLE_FRAME_DIRECTORY
           
FILE_SELECTOR_PANEL_DIRECTORY
           
IMAGE_SAVE_FRAME_DIRECTORY
           
IMPORT_SPECIMENS_DIRECTORY
           
INPUT_PANEL_DIRECTORY
           
META_DATA_ADMIN_DIRECTORY
           
SEARCH_OPEN_LIST_DIRECTORY
           
 
Method Summary
static Preference valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Preference[] 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

DEFAULT_LAST_DIRECTORY

public static final Preference DEFAULT_LAST_DIRECTORY

ARRAY_IMAGE_IMPORT_DIRECTORY

public static final Preference ARRAY_IMAGE_IMPORT_DIRECTORY

ALL_SESSIONS_DOWNLOAD_DIRECTORY

public static final Preference ALL_SESSIONS_DOWNLOAD_DIRECTORY

ARRAY_BLOCK_EXPORTER_DIRECTORY

public static final Preference ARRAY_BLOCK_EXPORTER_DIRECTORY

DOT_TABLE_FRAME_DIRECTORY

public static final Preference DOT_TABLE_FRAME_DIRECTORY

META_DATA_ADMIN_DIRECTORY

public static final Preference META_DATA_ADMIN_DIRECTORY

INPUT_PANEL_DIRECTORY

public static final Preference INPUT_PANEL_DIRECTORY

IMAGE_SAVE_FRAME_DIRECTORY

public static final Preference IMAGE_SAVE_FRAME_DIRECTORY

IMPORT_SPECIMENS_DIRECTORY

public static final Preference IMPORT_SPECIMENS_DIRECTORY

SEARCH_OPEN_LIST_DIRECTORY

public static final Preference SEARCH_OPEN_LIST_DIRECTORY

FILE_SELECTOR_PANEL_DIRECTORY

public static final Preference FILE_SELECTOR_PANEL_DIRECTORY

COLOR_MASK_GUI_DIRECTORY

public static final Preference COLOR_MASK_GUI_DIRECTORY
Method Detail

values

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

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

valueOf

public static Preference 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