Enum AxisAttribute
- java.lang.Object
- 
- java.lang.Enum<AxisAttribute>
- 
- com.inductiveautomation.ignition.common.gui.chart.AxisAttribute
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<AxisAttribute>
 
 public enum AxisAttribute extends java.lang.Enum<AxisAttribute> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetBoolean(int row, Dataset ds)java.awt.ColorgetColor(int row, Dataset ds)java.lang.ObjectgetDefault()doublegetDouble(int row, Dataset ds)intgetInt(int row, Dataset ds)java.lang.StringgetName()java.lang.ObjectgetObject(int row, Dataset ds)java.lang.StringgetString(int row, Dataset ds)java.lang.ClassgetType()static AxisAttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AxisAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NAMEpublic static final AxisAttribute NAME 
 - 
LABELpublic static final AxisAttribute LABEL 
 - 
TYPEpublic static final AxisAttribute TYPE 
 - 
LABEL_COLORpublic static final AxisAttribute LABEL_COLOR 
 - 
TICK_LABEL_COLORpublic static final AxisAttribute TICK_LABEL_COLOR 
 - 
TICK_MARK_COLORpublic static final AxisAttribute TICK_MARK_COLOR 
 - 
POSITIONpublic static final AxisAttribute POSITION 
 - 
INVERTpublic static final AxisAttribute INVERT 
 - 
AUTO_RANGEpublic static final AxisAttribute AUTO_RANGE 
 - 
AUTO_RANGE_INCL_ZEROpublic static final AxisAttribute AUTO_RANGE_INCL_ZERO 
 - 
AUTO_RANGE_MARGINpublic static final AxisAttribute AUTO_RANGE_MARGIN 
 - 
LOWER_BOUNDpublic static final AxisAttribute LOWER_BOUND 
 - 
UPPER_BOUNDpublic static final AxisAttribute UPPER_BOUND 
 - 
AUTO_TICK_UNITSpublic static final AxisAttribute AUTO_TICK_UNITS 
 - 
TICK_UNITpublic static final AxisAttribute TICK_UNIT 
 - 
GRID_UNITpublic static final AxisAttribute GRID_UNIT 
 - 
NUMBER_FORMATpublic static final AxisAttribute NUMBER_FORMAT 
 - 
LOG_LABEL_STYLEpublic static final AxisAttribute LOG_LABEL_STYLE 
 - 
SYMBOL_STRINGpublic static final AxisAttribute SYMBOL_STRING 
 - 
GRID_BANDS_VISIBLEpublic static final AxisAttribute GRID_BANDS_VISIBLE 
 - 
GRID_BAND_COLORpublic static final AxisAttribute GRID_BAND_COLOR 
 - 
GRID_BAND_ALTERNATE_COLORpublic static final AxisAttribute GRID_BAND_ALTERNATE_COLOR 
 
- 
 - 
Method Detail- 
valuespublic static AxisAttribute[] 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 (AxisAttribute c : AxisAttribute.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AxisAttribute 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
 
 - 
getDefaultpublic java.lang.Object getDefault() 
 - 
getTypepublic java.lang.Class getType() 
 - 
getNamepublic java.lang.String getName() 
 - 
getObjectpublic java.lang.Object getObject(int row, Dataset ds)
 - 
getIntpublic int getInt(int row, Dataset ds)
 - 
getStringpublic java.lang.String getString(int row, Dataset ds)
 - 
getDoublepublic double getDouble(int row, Dataset ds)
 - 
getBooleanpublic boolean getBoolean(int row, Dataset ds)
 - 
getColorpublic java.awt.Color getColor(int row, Dataset ds)
 
- 
 
-