|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ScanningMachine> edu.jhu.tmaj.client.importer.data.ScanningMachine
public enum ScanningMachine
The Machines that can scan an ArraySlide, namely the BLISS, ACIS, NIKON, and ARIOL. The machine each name their image files in a different format, meaning one will have x/y coordinates like "y_15_x_2_image.jpg and another like "image_zd3d_x15_y2_dfdf.jpg".
Enum Constant Summary | |
---|---|
ACIS
THE ACIS scanning machine from Chromavision (Clarient) corporation. |
|
APERIO
The Aperio ScanScope System. |
|
ARIOL
The ARIOL scanning machine, from Applied Imaging corporation. |
|
BLISS
The BLISS scanning machine from BACUS labs. |
|
NIKON
The Nikon. |
|
STANDARD
A machine that outputs in our standard format, but that we do not know the name of. |
Method Summary | |
---|---|
ImageOutputParser |
getImageOutputParser()
Gets the custom ImageOutputParser for the scanning machine. |
static ScanningMachine |
getMachine(java.lang.String machineName)
|
java.lang.String |
getName()
Gets the model name of the scanning machine. |
int |
getNumber()
Gets the number of the scanning machine used in the database. |
static ScanningMachine |
getScanningMachine(int machineID)
|
static ScanningMachine |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ScanningMachine[] |
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 |
---|
public static final ScanningMachine BLISS
public static final ScanningMachine ACIS
public static final ScanningMachine NIKON
public static final ScanningMachine ARIOL
public static final ScanningMachine STANDARD
public static final ScanningMachine APERIO
Method Detail |
---|
public static ScanningMachine[] values()
for (ScanningMachine c : ScanningMachine.values()) System.out.println(c);
public static ScanningMachine valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static ScanningMachine getMachine(java.lang.String machineName)
public java.lang.String getName()
public int getNumber()
public ImageOutputParser getImageOutputParser()
public static ScanningMachine getScanningMachine(int machineID)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |