Package com.iizix.prop.ui.chart.axis2d
Enum AxisFixLower
- java.lang.Object
- java.lang.Enum<AxisFixLower>
- com.iizix.prop.ui.chart.axis2d.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
 
- Method Summary- All Methods Static Methods Instance Methods Concrete Methods - Modifier and Type - Method - Description - AxisFixLower[]- enumValues()Gets all the choices possible, including default.- AxisFixLower- getDefault()Gets the default value.- int- getInt()Returns the choice as an integer value.- java.lang.String- getPropName()Gets the property name.- static AxisFixLower- valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.- static AxisFixLower[]- values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- Enum Constant Detail- NONE- public static final AxisFixLower NONE Default fixLower. The end bounds will be the lowest values in your data set.
 - MAJOR- public static final AxisFixLower MAJOR 
 - MINOR- public static final AxisFixLower MINOR 
 - MICRO- public static final AxisFixLower MICRO 
 
 - 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
 
 - getDefault- public AxisFixLower getDefault() Gets the default value. This value is used to initialize the property.- Specified by:
- getDefaultin interface- IPropCnrChoiceOption<IAxisChoiceOption>
- Returns:
- NONE.
 
 - enumValues- public AxisFixLower[] enumValues() Gets all the choices possible, including default.- Specified by:
- enumValuesin interface- IPropCnrChoiceOption<IAxisChoiceOption>
 
 - getInt- public int getInt() Returns the choice as an integer value.- Specified by:
- getIntin interface- IPropCnrChoiceOption<IAxisChoiceOption>
 
 - getPropName- public java.lang.String getPropName() Gets the property name.- Specified by:
- getPropNamein interface- IPropCnrChoiceOption<IAxisChoiceOption>