Package gov.nih.mipav.view
Enum ViewJFrameGraph.FitMode
- java.lang.Object
-
- java.lang.Enum<ViewJFrameGraph.FitMode>
-
- gov.nih.mipav.view.ViewJFrameGraph.FitMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ViewJFrameGraph.FitMode>
- Enclosing class:
- ViewJFrameGraph
public static enum ViewJFrameGraph.FitMode extends java.lang.Enum<ViewJFrameGraph.FitMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description fitExp
Mode indicates exponential fitting in progressfitGaussian
Mode indicates Gaussian fitting in progressfitLaplace
Mode indicates Laplace fitting in progressfitLinear
Mode indicates linear fitting in progressfitLorentz
Mode indicates Lorentz fitting in progressfitMultiExponential
Mode indicates constant plus sum of decaying exponentialsfitNone
Mode indicates no curve fitting is taking placefitRayleigh
Mode indicates Rayleigh fitting in progress
-
Constructor Summary
Constructors Modifier Constructor Description private
FitMode(java.lang.String listEntry, java.lang.Class cl)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.reflect.Constructor
getImpl()
java.lang.String
toString()
static ViewJFrameGraph.FitMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ViewJFrameGraph.FitMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
fitNone
public static final ViewJFrameGraph.FitMode fitNone
Mode indicates no curve fitting is taking place
-
fitLinear
public static final ViewJFrameGraph.FitMode fitLinear
Mode indicates linear fitting in progress
-
fitExp
public static final ViewJFrameGraph.FitMode fitExp
Mode indicates exponential fitting in progress
-
fitGaussian
public static final ViewJFrameGraph.FitMode fitGaussian
Mode indicates Gaussian fitting in progress
-
fitLaplace
public static final ViewJFrameGraph.FitMode fitLaplace
Mode indicates Laplace fitting in progress
-
fitLorentz
public static final ViewJFrameGraph.FitMode fitLorentz
Mode indicates Lorentz fitting in progress
-
fitMultiExponential
public static final ViewJFrameGraph.FitMode fitMultiExponential
Mode indicates constant plus sum of decaying exponentials
-
fitRayleigh
public static final ViewJFrameGraph.FitMode fitRayleigh
Mode indicates Rayleigh fitting in progress
-
-
Method Detail
-
values
public static ViewJFrameGraph.FitMode[] 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 (ViewJFrameGraph.FitMode c : ViewJFrameGraph.FitMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ViewJFrameGraph.FitMode 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ViewJFrameGraph.FitMode>
-
getImpl
public java.lang.reflect.Constructor getImpl()
-
-