edu.jhu.tmaj.client.frida.data
Enum CalibrationFunction

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

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


Enum Constant Summary
DEFAULT
           
EXPONENTIAL
           
GAMMA_VARIATE
           
INVERSE
           
LOG
           
LOG2
           
POLY2
           
POLY3
           
POLY4
           
POWER
           
RODBARD
           
RODBARD2
           
STRAIGHT_LINE
           
 
Method Summary
 java.lang.String getDescription()
           
 java.lang.String getFormulaDescription()
           
 int getImageJFunctionNumber()
           
static CalibrationFunction getInstanceFromDatabase(java.lang.String functionValue)
           
 int getNumberOfCoefficients()
           
static CalibrationFunction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CalibrationFunction[] 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

DEFAULT

public static final CalibrationFunction DEFAULT

INVERSE

public static final CalibrationFunction INVERSE

STRAIGHT_LINE

public static final CalibrationFunction STRAIGHT_LINE

POLY2

public static final CalibrationFunction POLY2

POLY3

public static final CalibrationFunction POLY3

POLY4

public static final CalibrationFunction POLY4

EXPONENTIAL

public static final CalibrationFunction EXPONENTIAL

POWER

public static final CalibrationFunction POWER

LOG

public static final CalibrationFunction LOG

RODBARD

public static final CalibrationFunction RODBARD

GAMMA_VARIATE

public static final CalibrationFunction GAMMA_VARIATE

LOG2

public static final CalibrationFunction LOG2

RODBARD2

public static final CalibrationFunction RODBARD2
Method Detail

values

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

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

valueOf

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

getImageJFunctionNumber

public int getImageJFunctionNumber()

getNumberOfCoefficients

public int getNumberOfCoefficients()

getDescription

public java.lang.String getDescription()

getFormulaDescription

public java.lang.String getFormulaDescription()

getInstanceFromDatabase

public static CalibrationFunction getInstanceFromDatabase(java.lang.String functionValue)