Enum AxisFixLower

  • All Implemented Interfaces:
    IPropCnrChoiceOption<IAxisChoiceOption>, IAxisChoiceOption, java.io.Serializable, java.lang.Comparable<AxisFixLower>

    public enum AxisFixLower
    extends java.lang.Enum<AxisFixLower>
    implements IAxisChoiceOption
    This enum has the values of the alignment of the ticks and have 4 available options: MAJOR, MINOR, MICRO, and NONE. These default to NONE, and when set will force the end bounds to align to the corresponding tick division. If NONE is chosen, the end bounds will be the lowest values in the data set.
    Author:
    Christopher Mindus
    • Enum Constant Detail

      • NONE

        public static final AxisFixLower NONE
        Default fixLower. The end bounds will be the lowest values in your data set.
    • Method Detail

      • values

        public static AxisFixLower[] 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 (AxisFixLower c : AxisFixLower.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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