Enum ViewJFrameGraph.FitMode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      fitExp
      Mode indicates exponential fitting in progress
      fitGaussian
      Mode indicates Gaussian fitting in progress
      fitLaplace
      Mode indicates Laplace fitting in progress
      fitLinear
      Mode indicates linear fitting in progress
      fitLorentz
      Mode indicates Lorentz fitting in progress
      fitMultiExponential
      Mode indicates constant plus sum of decaying exponentials
      fitNone
      Mode indicates no curve fitting is taking place
      fitRayleigh
      Mode indicates Rayleigh fitting in progress
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.reflect.Constructor cl  
      private java.lang.String listEntry  
    • 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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • listEntry

        private java.lang.String listEntry
      • cl

        private java.lang.reflect.Constructor cl
    • Constructor Detail

      • FitMode

        private FitMode​(java.lang.String listEntry,
                        java.lang.Class cl)
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<ViewJFrameGraph.FitMode>
      • getImpl

        public java.lang.reflect.Constructor getImpl()