edu.jhu.tmaj.client.importer.specimens.data
Enum StaticDestination.DestinationTable
java.lang.Object
java.lang.Enum<StaticDestination.DestinationTable>
edu.jhu.tmaj.client.importer.specimens.data.StaticDestination.DestinationTable
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<StaticDestination.DestinationTable>
- Enclosing class:
- StaticDestination
public static enum StaticDestination.DestinationTable
- extends java.lang.Enum<StaticDestination.DestinationTable>
Either Patients or Specimens. The only 2 tables in TMAJ where mass tab-delimited imports may
happen.
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 |
PATIENTS
public static final StaticDestination.DestinationTable PATIENTS
SPECIMENS
public static final StaticDestination.DestinationTable SPECIMENS
values
public static StaticDestination.DestinationTable[] 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 (StaticDestination.DestinationTable c : StaticDestination.DestinationTable.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StaticDestination.DestinationTable 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