edu.jhu.tmaj.beans.data
Enum DatabaseTable

java.lang.Object
  extended by java.lang.Enum<DatabaseTable>
      extended by edu.jhu.tmaj.beans.data.DatabaseTable
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DatabaseTable>

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


Enum Constant Summary
ANIMAL_EXPERIMENTS
           
ARRAY_BLOCKS
           
ARRAY_CORES
           
ARRAY_IMAGES
           
ARRAY_SLIDES
           
BLOCK_OR_SLIDE_EXCHANGES
           
BLOCK_USAGES
           
BLOCK_USAGES_ALT
           
BLOCKS
           
BLOOD_SAMPLES
           
BLOOD_USAGES
           
CELL_LINE_EXPERIMENTS
           
CELL_LINES
           
COLOR_MASKS
           
DATA_DELETES
           
DATA_UPDATES
           
ENUMERATIONS
           
EXTERNAL_FILES
           
GRANTS
           
HOSPITALS
           
IMAGE_ANALYSIS_RESULTS
           
IMAGE_ANALYSIS_SESSIONS
           
KEY_VALUES
           
LASSO_MASKS
           
LASSOED_FILES
           
MACHINE_SCORES
           
MACHINE_SESSIONS
           
MASKS
           
META_MASKS_ACTIONS
           
MOLECULAR_SAMPLES
           
MOLECULAR_USAGES
           
PAPER_SESSIONS
           
PAPERS
           
PATIENTS
           
PROJECT_ARRAY_SLIDES
           
PROJECTS
           
PROTOCOLS
           
RECENT_IMAGE_ANALYSIS_SESSIONS
           
RECENT_SESSIONS
           
SCANS
           
SCORED_IMAGE_DATA
           
SCORED_IMAGE_ENUMS
           
SCORED_IMAGE_FIELDS
           
SCORED_IMAGES
           
SCORING_STRATEGY
           
SESSIONS
           
SHAPES
           
SLIDES
           
SPECIMEN
           
SPECIMEN_DATA
           
SPECIMEN_ENUMS
           
SPECIMEN_FIELDS
           
SPECIMEN_TYPES
           
TISSUE_DIAGNOSIS
           
TISSUE_DIAGNOSIS_DATA
           
TISSUE_DIAGNOSIS_ENUMS
           
TISSUE_DIAGNOSIS_FIELDS
           
TISSUE_SAMPLES
           
TISSUE_TYPES
           
TISSUE_USAGES
           
URINE_SAMPLES
           
URINE_USAGES
           
USERS
           
USERS_ARRAY_BLOCKS
           
USERS_PROJECTS
           
USERS_SESSIONS
           
USERS_USERS
           
 
Method Summary
 java.lang.String getTableName()
           
static DatabaseTable valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DatabaseTable[] 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

ANIMAL_EXPERIMENTS

public static final DatabaseTable ANIMAL_EXPERIMENTS

ARRAY_BLOCKS

public static final DatabaseTable ARRAY_BLOCKS

ARRAY_CORES

public static final DatabaseTable ARRAY_CORES

ARRAY_IMAGES

public static final DatabaseTable ARRAY_IMAGES

ARRAY_SLIDES

public static final DatabaseTable ARRAY_SLIDES

BLOCK_OR_SLIDE_EXCHANGES

public static final DatabaseTable BLOCK_OR_SLIDE_EXCHANGES

BLOCKS

public static final DatabaseTable BLOCKS

BLOCK_USAGES

public static final DatabaseTable BLOCK_USAGES

BLOCK_USAGES_ALT

public static final DatabaseTable BLOCK_USAGES_ALT

BLOOD_SAMPLES

public static final DatabaseTable BLOOD_SAMPLES

BLOOD_USAGES

public static final DatabaseTable BLOOD_USAGES

CELL_LINE_EXPERIMENTS

public static final DatabaseTable CELL_LINE_EXPERIMENTS

CELL_LINES

public static final DatabaseTable CELL_LINES

COLOR_MASKS

public static final DatabaseTable COLOR_MASKS

DATA_DELETES

public static final DatabaseTable DATA_DELETES

DATA_UPDATES

public static final DatabaseTable DATA_UPDATES

ENUMERATIONS

public static final DatabaseTable ENUMERATIONS

EXTERNAL_FILES

public static final DatabaseTable EXTERNAL_FILES

GRANTS

public static final DatabaseTable GRANTS

HOSPITALS

public static final DatabaseTable HOSPITALS

IMAGE_ANALYSIS_RESULTS

public static final DatabaseTable IMAGE_ANALYSIS_RESULTS

IMAGE_ANALYSIS_SESSIONS

public static final DatabaseTable IMAGE_ANALYSIS_SESSIONS

KEY_VALUES

public static final DatabaseTable KEY_VALUES

LASSOED_FILES

public static final DatabaseTable LASSOED_FILES

LASSO_MASKS

public static final DatabaseTable LASSO_MASKS

MACHINE_SCORES

public static final DatabaseTable MACHINE_SCORES

MACHINE_SESSIONS

public static final DatabaseTable MACHINE_SESSIONS

MASKS

public static final DatabaseTable MASKS

META_MASKS_ACTIONS

public static final DatabaseTable META_MASKS_ACTIONS

MOLECULAR_SAMPLES

public static final DatabaseTable MOLECULAR_SAMPLES

MOLECULAR_USAGES

public static final DatabaseTable MOLECULAR_USAGES

PAPERS

public static final DatabaseTable PAPERS

PAPER_SESSIONS

public static final DatabaseTable PAPER_SESSIONS

PATIENTS

public static final DatabaseTable PATIENTS

PROJECTS

public static final DatabaseTable PROJECTS

PROJECT_ARRAY_SLIDES

public static final DatabaseTable PROJECT_ARRAY_SLIDES

PROTOCOLS

public static final DatabaseTable PROTOCOLS

RECENT_IMAGE_ANALYSIS_SESSIONS

public static final DatabaseTable RECENT_IMAGE_ANALYSIS_SESSIONS

RECENT_SESSIONS

public static final DatabaseTable RECENT_SESSIONS

SCANS

public static final DatabaseTable SCANS

SCORED_IMAGE_DATA

public static final DatabaseTable SCORED_IMAGE_DATA

SCORED_IMAGE_ENUMS

public static final DatabaseTable SCORED_IMAGE_ENUMS

SCORED_IMAGE_FIELDS

public static final DatabaseTable SCORED_IMAGE_FIELDS

SCORED_IMAGES

public static final DatabaseTable SCORED_IMAGES

SCORING_STRATEGY

public static final DatabaseTable SCORING_STRATEGY

SESSIONS

public static final DatabaseTable SESSIONS

SHAPES

public static final DatabaseTable SHAPES

SLIDES

public static final DatabaseTable SLIDES

SPECIMEN_DATA

public static final DatabaseTable SPECIMEN_DATA

SPECIMEN_ENUMS

public static final DatabaseTable SPECIMEN_ENUMS

SPECIMEN_FIELDS

public static final DatabaseTable SPECIMEN_FIELDS

SPECIMEN

public static final DatabaseTable SPECIMEN

SPECIMEN_TYPES

public static final DatabaseTable SPECIMEN_TYPES

TISSUE_DIAGNOSIS

public static final DatabaseTable TISSUE_DIAGNOSIS

TISSUE_DIAGNOSIS_DATA

public static final DatabaseTable TISSUE_DIAGNOSIS_DATA

TISSUE_DIAGNOSIS_ENUMS

public static final DatabaseTable TISSUE_DIAGNOSIS_ENUMS

TISSUE_DIAGNOSIS_FIELDS

public static final DatabaseTable TISSUE_DIAGNOSIS_FIELDS

TISSUE_SAMPLES

public static final DatabaseTable TISSUE_SAMPLES

TISSUE_TYPES

public static final DatabaseTable TISSUE_TYPES

TISSUE_USAGES

public static final DatabaseTable TISSUE_USAGES

USERS

public static final DatabaseTable USERS

USERS_ARRAY_BLOCKS

public static final DatabaseTable USERS_ARRAY_BLOCKS

USERS_PROJECTS

public static final DatabaseTable USERS_PROJECTS

URINE_SAMPLES

public static final DatabaseTable URINE_SAMPLES

USERS_SESSIONS

public static final DatabaseTable USERS_SESSIONS

URINE_USAGES

public static final DatabaseTable URINE_USAGES

USERS_USERS

public static final DatabaseTable USERS_USERS
Method Detail

values

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

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

valueOf

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

getTableName

public java.lang.String getTableName()