Enum TabAttribute
- java.lang.Object
- 
- java.lang.Enum<TabAttribute>
- 
- com.inductiveautomation.factorypmi.application.components.tabstrip.TabAttribute
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<TabAttribute>
 
 public enum TabAttribute extends java.lang.Enum<TabAttribute> 
- 
- 
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)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 TabAttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TabAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NAMEpublic static final TabAttribute NAME 
 - 
DISPLAY_NAMEpublic static final TabAttribute DISPLAY_NAME 
 - 
ENABLEDpublic static final TabAttribute ENABLED 
 - 
HIDDENpublic static final TabAttribute HIDDEN 
 - 
HOVER_COLORpublic static final TabAttribute HOVER_COLOR 
 - 
SELECTED_IMAGE_PATHpublic static final TabAttribute SELECTED_IMAGE_PATH 
 - 
SELECTED_IMAGE_HORIZONTAL_ALIGNMENTpublic static final TabAttribute SELECTED_IMAGE_HORIZONTAL_ALIGNMENT 
 - 
SELECTED_IMAGE_VERTICAL_ALIGNMENTpublic static final TabAttribute SELECTED_IMAGE_VERTICAL_ALIGNMENT 
 - 
SELECTED_FOREGROUND_COLORpublic static final TabAttribute SELECTED_FOREGROUND_COLOR 
 - 
SELECTED_BACKGROUND_COLORpublic static final TabAttribute SELECTED_BACKGROUND_COLOR 
 - 
SELECTED_FONTpublic static final TabAttribute SELECTED_FONT 
 - 
SELECTED_GRADIENT_START_COLORpublic static final TabAttribute SELECTED_GRADIENT_START_COLOR 
 - 
SELECTED_GRADIENT_END_COLORpublic static final TabAttribute SELECTED_GRADIENT_END_COLOR 
 - 
UNSELECTED_IMAGE_PATHpublic static final TabAttribute UNSELECTED_IMAGE_PATH 
 - 
UNSELECTED_IMAGE_HORIZONTAL_ALIGNMENTpublic static final TabAttribute UNSELECTED_IMAGE_HORIZONTAL_ALIGNMENT 
 - 
UNSELECTED_IMAGE_VERTICAL_ALIGNMENTpublic static final TabAttribute UNSELECTED_IMAGE_VERTICAL_ALIGNMENT 
 - 
UNSELECTED_FOREGROUND_COLORpublic static final TabAttribute UNSELECTED_FOREGROUND_COLOR 
 - 
UNSELECTED_BACKGROUND_COLORpublic static final TabAttribute UNSELECTED_BACKGROUND_COLOR 
 - 
UNSELECTED_FONTpublic static final TabAttribute UNSELECTED_FONT 
 - 
UNSELECTED_GRADIENT_START_COLORpublic static final TabAttribute UNSELECTED_GRADIENT_START_COLOR 
 - 
UNSELECTED_GRADIENT_END_COLORpublic static final TabAttribute UNSELECTED_GRADIENT_END_COLOR 
 - 
USE_SELECTED_GRADIENTpublic static final TabAttribute USE_SELECTED_GRADIENT 
 - 
USE_UNSELECTED_GRADIENTpublic static final TabAttribute USE_UNSELECTED_GRADIENT 
 - 
MOUSEOVER_TEXTpublic static final TabAttribute MOUSEOVER_TEXT 
 
- 
 - 
Method Detail- 
valuespublic static TabAttribute[] 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 (TabAttribute c : TabAttribute.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static TabAttribute 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)
 - 
getFloatpublic float getFloat(int row, Dataset ds)
 - 
getBooleanpublic boolean getBoolean(int row, Dataset ds)
 - 
getColorpublic java.awt.Color getColor(int row, Dataset ds)
 
- 
 
-