edu.mayo.bsi.ngsportal.client.sample
Enum SampleTreeGrid.SampleField

java.lang.Object
  extended by java.lang.Enum<SampleTreeGrid.SampleField>
      extended by edu.mayo.bsi.ngsportal.client.sample.SampleTreeGrid.SampleField
All Implemented Interfaces:
Serializable, Comparable<SampleTreeGrid.SampleField>
Enclosing class:
SampleTreeGrid

public static enum SampleTreeGrid.SampleField
extends Enum<SampleTreeGrid.SampleField>


Enum Constant Summary
APP_TYPE
           
CaptureKit
           
CYCLE
           
FLOWCELL
           
IDX_SEQ
           
IS_CONTROL
           
IS_IDX_VENDOR
           
LANE
           
READ_TYPE
           
RLIMS_ID
           
RLIMSProjectID
           
SPECIES
           
 
Method Summary
static SampleTreeGrid.SampleField valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SampleTreeGrid.SampleField[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

APP_TYPE

public static final SampleTreeGrid.SampleField APP_TYPE

READ_TYPE

public static final SampleTreeGrid.SampleField READ_TYPE

LANE

public static final SampleTreeGrid.SampleField LANE

CYCLE

public static final SampleTreeGrid.SampleField CYCLE

IS_CONTROL

public static final SampleTreeGrid.SampleField IS_CONTROL

IS_IDX_VENDOR

public static final SampleTreeGrid.SampleField IS_IDX_VENDOR

IDX_SEQ

public static final SampleTreeGrid.SampleField IDX_SEQ

FLOWCELL

public static final SampleTreeGrid.SampleField FLOWCELL

RLIMS_ID

public static final SampleTreeGrid.SampleField RLIMS_ID

CaptureKit

public static final SampleTreeGrid.SampleField CaptureKit

RLIMSProjectID

public static final SampleTreeGrid.SampleField RLIMSProjectID

SPECIES

public static final SampleTreeGrid.SampleField SPECIES
Method Detail

values

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

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

valueOf

public static SampleTreeGrid.SampleField valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null