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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getBoolean(int row, Dataset ds)
java.awt.Color
getColor(int row, Dataset ds)
java.lang.Object
getDefault()
float
getFloat(int row, Dataset ds)
int
getInt(int row, Dataset ds)
java.lang.String
getName()
java.lang.Object
getObject(int row, Dataset ds)
java.lang.String
getString(int row, Dataset ds)
java.lang.Class
getType()
static TabAttribute
valueOf(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
-
NAME
public static final TabAttribute NAME
-
DISPLAY_NAME
public static final TabAttribute DISPLAY_NAME
-
ENABLED
public static final TabAttribute ENABLED
-
HIDDEN
public static final TabAttribute HIDDEN
-
HOVER_COLOR
public static final TabAttribute HOVER_COLOR
-
SELECTED_IMAGE_PATH
public static final TabAttribute SELECTED_IMAGE_PATH
-
SELECTED_IMAGE_HORIZONTAL_ALIGNMENT
public static final TabAttribute SELECTED_IMAGE_HORIZONTAL_ALIGNMENT
-
SELECTED_IMAGE_VERTICAL_ALIGNMENT
public static final TabAttribute SELECTED_IMAGE_VERTICAL_ALIGNMENT
-
SELECTED_FOREGROUND_COLOR
public static final TabAttribute SELECTED_FOREGROUND_COLOR
-
SELECTED_BACKGROUND_COLOR
public static final TabAttribute SELECTED_BACKGROUND_COLOR
-
SELECTED_FONT
public static final TabAttribute SELECTED_FONT
-
SELECTED_GRADIENT_START_COLOR
public static final TabAttribute SELECTED_GRADIENT_START_COLOR
-
SELECTED_GRADIENT_END_COLOR
public static final TabAttribute SELECTED_GRADIENT_END_COLOR
-
UNSELECTED_IMAGE_PATH
public static final TabAttribute UNSELECTED_IMAGE_PATH
-
UNSELECTED_IMAGE_HORIZONTAL_ALIGNMENT
public static final TabAttribute UNSELECTED_IMAGE_HORIZONTAL_ALIGNMENT
-
UNSELECTED_IMAGE_VERTICAL_ALIGNMENT
public static final TabAttribute UNSELECTED_IMAGE_VERTICAL_ALIGNMENT
-
UNSELECTED_FOREGROUND_COLOR
public static final TabAttribute UNSELECTED_FOREGROUND_COLOR
-
UNSELECTED_BACKGROUND_COLOR
public static final TabAttribute UNSELECTED_BACKGROUND_COLOR
-
UNSELECTED_FONT
public static final TabAttribute UNSELECTED_FONT
-
UNSELECTED_GRADIENT_START_COLOR
public static final TabAttribute UNSELECTED_GRADIENT_START_COLOR
-
UNSELECTED_GRADIENT_END_COLOR
public static final TabAttribute UNSELECTED_GRADIENT_END_COLOR
-
USE_SELECTED_GRADIENT
public static final TabAttribute USE_SELECTED_GRADIENT
-
USE_UNSELECTED_GRADIENT
public static final TabAttribute USE_UNSELECTED_GRADIENT
-
MOUSEOVER_TEXT
public static final TabAttribute MOUSEOVER_TEXT
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 namejava.lang.NullPointerException
- if the argument is null
-
getDefault
public java.lang.Object getDefault()
-
getType
public java.lang.Class getType()
-
getName
public java.lang.String getName()
-
getObject
public java.lang.Object getObject(int row, Dataset ds)
-
getInt
public int getInt(int row, Dataset ds)
-
getString
public java.lang.String getString(int row, Dataset ds)
-
getFloat
public float getFloat(int row, Dataset ds)
-
getBoolean
public boolean getBoolean(int row, Dataset ds)
-
getColor
public java.awt.Color getColor(int row, Dataset ds)
-
-