Enum Class LimitsMethod

java.lang.Object
java.lang.Enum<LimitsMethod>
cnuphys.splot.plot.LimitsMethod
All Implemented Interfaces:
Serializable, Comparable<LimitsMethod>, Constable

public enum LimitsMethod extends Enum<LimitsMethod>
How we want to choose axes limits
Author:
heddle
  • Enum Constant Details

    • MANUALLIMITS

      public static final LimitsMethod MANUALLIMITS
    • ALGORITHMICLIMITS

      public static final LimitsMethod ALGORITHMICLIMITS
    • USEDATALIMITS

      public static final LimitsMethod USEDATALIMITS
  • Field Details

  • Method Details

    • values

      public static LimitsMethod[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LimitsMethod valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()
      Get the nice name of the enum.
      Returns:
      the nice name, for combo boxes, menus, etc.
    • getValue

      public static LimitsMethod getValue(String name)
      Returns the enum value from the name.
      Parameters:
      name - the name to match.
      Returns:
      the LimitsMethod that corresponds to the name. Returns null if no match is found.
    • getComboBox

      public static EnumComboBox getComboBox(LimitsMethod defaultChoice)
      Obtain a combo box of choices.
      Parameters:
      defaultChoice -
      Returns:
      the combo box of limit methods