Enum PenAttribute
- java.lang.Object
- 
- java.lang.Enum<PenAttribute>
- 
- com.inductiveautomation.factorypmi.application.components.chart.easychart.PenAttribute
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<PenAttribute>
 
 public enum PenAttribute extends java.lang.Enum<PenAttribute> 
- 
- 
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()floatgetFloat(int row, Dataset ds)java.lang.IntegergetInt(int row, Dataset ds)java.lang.StringgetName()java.lang.ObjectgetObject(int row, Dataset ds)Looks up this attribute in the dataset at the given row, coercing the value found there to this attribute's natural typejava.util.Set<PenType>getPenTypes()java.lang.StringgetString(int row, Dataset ds)java.lang.ClassgetType()static PenAttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PenAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NAMEpublic static final PenAttribute NAME 
 - 
COL_NAMEpublic static final PenAttribute COL_NAME 
 - 
TABLE_NAMEpublic static final PenAttribute TABLE_NAME 
 - 
XVAL_COL_NAMEpublic static final PenAttribute XVAL_COL_NAME 
 - 
DATASOURCEpublic static final PenAttribute DATASOURCE 
 - 
TAG_PATHpublic static final PenAttribute TAG_PATH 
 - 
AGGREGATION_MODEpublic static final PenAttribute AGGREGATION_MODE 
 - 
FUNCTIONpublic static final PenAttribute FUNCTION 
 - 
FUNCTION_PARAMpublic static final PenAttribute FUNCTION_PARAM 
 - 
DRIVING_PENpublic static final PenAttribute DRIVING_PEN 
 - 
AXISpublic static final PenAttribute AXIS 
 - 
SUBPLOTpublic static final PenAttribute SUBPLOT 
 - 
ENABLEDpublic static final PenAttribute ENABLED 
 - 
COLORpublic static final PenAttribute COLOR 
 - 
DASH_PATTERNpublic static final PenAttribute DASH_PATTERN 
 - 
RENDER_STYLEpublic static final PenAttribute RENDER_STYLE 
 - 
LINE_WEIGHTpublic static final PenAttribute LINE_WEIGHT 
 - 
SHAPEpublic static final PenAttribute SHAPE 
 - 
FILL_SHAPEpublic static final PenAttribute FILL_SHAPE 
 - 
LABELSpublic static final PenAttribute LABELS 
 - 
GROUP_NAMEpublic static final PenAttribute GROUP_NAME 
 - 
WHERE_CLAUSEpublic static final PenAttribute WHERE_CLAUSE 
 - 
DIGITALpublic static final PenAttribute DIGITAL 
 - 
OVERRIDE_AUTOCOLORpublic static final PenAttribute OVERRIDE_AUTOCOLOR 
 - 
HIDDENpublic static final PenAttribute HIDDEN 
 - 
USER_SELECTABLEpublic static final PenAttribute USER_SELECTABLE 
 - 
SORT_ORDERpublic static final PenAttribute SORT_ORDER 
 - 
USER_REMOVABLEpublic static final PenAttribute USER_REMOVABLE 
 
- 
 - 
Method Detail- 
valuespublic static PenAttribute[] 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 (PenAttribute c : PenAttribute.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PenAttribute 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() 
 - 
getPenTypespublic java.util.Set<PenType> getPenTypes() 
 - 
getObjectpublic java.lang.Object getObject(int row, Dataset ds)Looks up this attribute in the dataset at the given row, coercing the value found there to this attribute's natural type
 - 
getIntpublic java.lang.Integer getInt(int row, Dataset ds)
 - 
getStringpublic java.lang.String getString(int row, Dataset ds)
 - 
getFloatpublic float getFloat(int row, Dataset ds)
 - 
getBooleanpublic boolean getBoolean(int row, Dataset ds)
 - 
getColorpublic java.awt.Color getColor(int row, Dataset ds)
 
- 
 
-