edu.jhu.tmaj.beans.masks.results
Enum MaskStats.StatName

java.lang.Object
  extended by java.lang.Enum<MaskStats.StatName>
      extended by edu.jhu.tmaj.beans.masks.results.MaskStats.StatName
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MaskStats.StatName>
Enclosing class:
MaskStats

public static enum MaskStats.StatName
extends java.lang.Enum<MaskStats.StatName>


Enum Constant Summary
INTENSITY_MAX
           
INTENSITY_MEAN
           
INTENSITY_MEDIAN
           
INTENSITY_MIN
           
INTENSITY_SUM
           
MASK_AREA
           
PARTICLE_COUNT
           
PARTICLE_MEAN_SIZE
           
PARTICLE_STD_DEV
           
 
Method Summary
 java.lang.String getDatabaseColumnName()
           
 boolean isDouble()
           
static MaskStats.StatName valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MaskStats.StatName[] 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

MASK_AREA

public static final MaskStats.StatName MASK_AREA

INTENSITY_MIN

public static final MaskStats.StatName INTENSITY_MIN

INTENSITY_MAX

public static final MaskStats.StatName INTENSITY_MAX

INTENSITY_SUM

public static final MaskStats.StatName INTENSITY_SUM

INTENSITY_MEAN

public static final MaskStats.StatName INTENSITY_MEAN

INTENSITY_MEDIAN

public static final MaskStats.StatName INTENSITY_MEDIAN

PARTICLE_COUNT

public static final MaskStats.StatName PARTICLE_COUNT

PARTICLE_MEAN_SIZE

public static final MaskStats.StatName PARTICLE_MEAN_SIZE

PARTICLE_STD_DEV

public static final MaskStats.StatName PARTICLE_STD_DEV
Method Detail

values

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

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

valueOf

public static MaskStats.StatName 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

getDatabaseColumnName

public java.lang.String getDatabaseColumnName()

isDouble

public boolean isDouble()