Enum CustomAttributes
- java.lang.Object
-
- java.lang.Enum<CustomAttributes>
-
- org.apache.myfaces.tobago.renderkit.html.CustomAttributes
-
- All Implemented Interfaces:
Serializable
,Comparable<CustomAttributes>
,MarkupLanguageAttributes
public enum CustomAttributes extends Enum<CustomAttributes> implements MarkupLanguageAttributes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_ID
COLLAPSE_OPERATION
COLLAPSE_TARGET
CONFIRMATION
CUSTOM_CLASS
DATE_PATTERN
DECOUPLED
DELAY
DROP_ZONE
ESCAPE
<f:ajax> attributeEVENT
EXECUTE
EXPANDABLE
FIELD_ID
FILTER
FOCUS_ID
I18N
Internationalization strings for e.g. date specific labels, e.g.INDEX
The index of the tab inside the tab group.ITEMS
LABEL
Lazy loading in sheet.LAZY
LAZY_ROWS
LAZY_UPDATE
Is this request/response an update of lazy loaded data in sheet.LOCAL_MENU
LOCALE
MAX_ITEMS
MIN_CHARS
OMIT
ORIENTATION
PARENT
RENDER
<f:ajax> attributeRESET_VALUES
ROW_COUNT
Number of all rows in sheet.ROW_INDEX
Index of a specific row in the sheet.ROWS
Number of rows to show/load for lazy loading in sheet.SANITIZE
SELECTABLE
SELECTED
SWITCH_TYPE
The mode of the tab switch: client, reloadTab, reloadPage.TIME_PATTERN
TOTAL_COUNT
UPDATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static CustomAttributes
valueOf(String name)
Returns the enum constant of this type with the specified name.static CustomAttributes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COLLAPSE_OPERATION
public static final CustomAttributes COLLAPSE_OPERATION
-
COLLAPSE_TARGET
public static final CustomAttributes COLLAPSE_TARGET
-
CONFIRMATION
public static final CustomAttributes CONFIRMATION
-
CLIENT_ID
public static final CustomAttributes CLIENT_ID
-
CUSTOM_CLASS
public static final CustomAttributes CUSTOM_CLASS
-
DATE_PATTERN
public static final CustomAttributes DATE_PATTERN
-
DELAY
public static final CustomAttributes DELAY
-
DROP_ZONE
public static final CustomAttributes DROP_ZONE
-
EVENT
public static final CustomAttributes EVENT
-
ESCAPE
public static final CustomAttributes ESCAPE
<f:ajax> attribute
-
EXECUTE
public static final CustomAttributes EXECUTE
-
EXPANDABLE
public static final CustomAttributes EXPANDABLE
-
FIELD_ID
public static final CustomAttributes FIELD_ID
-
FILTER
public static final CustomAttributes FILTER
-
FOCUS_ID
public static final CustomAttributes FOCUS_ID
-
I18N
public static final CustomAttributes I18N
Internationalization strings for e.g. date specific labels, e.g. January or Monday.
-
INDEX
public static final CustomAttributes INDEX
The index of the tab inside the tab group.
-
ITEMS
public static final CustomAttributes ITEMS
-
LABEL
public static final CustomAttributes LABEL
Lazy loading in sheet.
-
LAZY
public static final CustomAttributes LAZY
-
LAZY_ROWS
public static final CustomAttributes LAZY_ROWS
-
LAZY_UPDATE
public static final CustomAttributes LAZY_UPDATE
Is this request/response an update of lazy loaded data in sheet.
-
LOCALE
public static final CustomAttributes LOCALE
-
LOCAL_MENU
public static final CustomAttributes LOCAL_MENU
-
MAX_ITEMS
public static final CustomAttributes MAX_ITEMS
-
MIN_CHARS
public static final CustomAttributes MIN_CHARS
-
OMIT
public static final CustomAttributes OMIT
-
ORIENTATION
public static final CustomAttributes ORIENTATION
-
PARENT
public static final CustomAttributes PARENT
-
SANITIZE
public static final CustomAttributes SANITIZE
-
SELECTABLE
public static final CustomAttributes SELECTABLE
-
SELECTED
public static final CustomAttributes SELECTED
-
RENDER
public static final CustomAttributes RENDER
<f:ajax> attribute
-
RESET_VALUES
public static final CustomAttributes RESET_VALUES
-
ROWS
public static final CustomAttributes ROWS
Number of rows to show/load for lazy loading in sheet.
-
ROW_COUNT
public static final CustomAttributes ROW_COUNT
Number of all rows in sheet.
-
ROW_INDEX
public static final CustomAttributes ROW_INDEX
Index of a specific row in the sheet.
-
SWITCH_TYPE
public static final CustomAttributes SWITCH_TYPE
The mode of the tab switch: client, reloadTab, reloadPage.
-
TIME_PATTERN
public static final CustomAttributes TIME_PATTERN
-
TOTAL_COUNT
public static final CustomAttributes TOTAL_COUNT
-
DECOUPLED
public static final CustomAttributes DECOUPLED
-
UPDATE
public static final CustomAttributes UPDATE
-
-
Method Detail
-
values
public static CustomAttributes[] 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 (CustomAttributes c : CustomAttributes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CustomAttributes valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
- Specified by:
getValue
in interfaceMarkupLanguageAttributes
-
-