Enum Facets
- java.lang.Object
-
- java.lang.Enum<Facets>
-
- org.apache.myfaces.tobago.component.Facets
-
- All Implemented Interfaces:
Serializable
,Comparable<Facets>
public enum Facets extends Enum<Facets>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description after
bar
before
brand
checkbox
confirmation
constraints
contextMenu
Deprecated.currently not supportedempty
footer
header
label
pagerPage
pagerPageDirect
pagerRow
popover
radio
reload
sorter
-
Field Summary
Fields Modifier and Type Field Description static String
AFTER
static String
BAR
static String
BEFORE
static String
BRAND
static String
CHECKBOX
static String
CONFIRMATION
static String
CONSTRAINTS
static String
CONTEXT_MENU
Deprecated.currently not supportedstatic String
EMPTY
static String
FOOTER
static String
HEADER
static String
LABEL
static String
PAGER_PAGE
static String
PAGER_PAGE_DIRECT
static String
PAGER_ROW
static String
POPOVER
static String
RADIO
static String
RELOAD
TODO: Must be replaced by a behaviorstatic String
SORTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Facets
valueOf(String name)
Returns the enum constant of this type with the specified name.static Facets[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
after
public static final Facets after
-
bar
public static final Facets bar
-
before
public static final Facets before
-
brand
public static final Facets brand
-
checkbox
public static final Facets checkbox
-
confirmation
public static final Facets confirmation
-
constraints
public static final Facets constraints
-
contextMenu
@Deprecated public static final Facets contextMenu
Deprecated.currently not supported
-
empty
public static final Facets empty
-
footer
public static final Facets footer
-
label
public static final Facets label
-
header
public static final Facets header
-
pagerPage
public static final Facets pagerPage
-
pagerPageDirect
public static final Facets pagerPageDirect
-
pagerRow
public static final Facets pagerRow
-
popover
public static final Facets popover
-
radio
public static final Facets radio
-
reload
public static final Facets reload
-
sorter
public static final Facets sorter
-
-
Field Detail
-
AFTER
public static final String AFTER
- See Also:
- Constant Field Values
-
BAR
public static final String BAR
- See Also:
- Constant Field Values
-
BEFORE
public static final String BEFORE
- See Also:
- Constant Field Values
-
BRAND
public static final String BRAND
- See Also:
- Constant Field Values
-
CHECKBOX
public static final String CHECKBOX
- See Also:
- Constant Field Values
-
CONFIRMATION
public static final String CONFIRMATION
- See Also:
- Constant Field Values
-
CONSTRAINTS
public static final String CONSTRAINTS
- See Also:
- Constant Field Values
-
CONTEXT_MENU
@Deprecated public static final String CONTEXT_MENU
Deprecated.currently not supported- See Also:
- Constant Field Values
-
EMPTY
public static final String EMPTY
- See Also:
- Constant Field Values
-
FOOTER
public static final String FOOTER
- See Also:
- Constant Field Values
-
LABEL
public static final String LABEL
- See Also:
- Constant Field Values
-
HEADER
public static final String HEADER
- See Also:
- Constant Field Values
-
PAGER_PAGE
public static final String PAGER_PAGE
- See Also:
- Constant Field Values
-
PAGER_PAGE_DIRECT
public static final String PAGER_PAGE_DIRECT
- See Also:
- Constant Field Values
-
PAGER_ROW
public static final String PAGER_ROW
- See Also:
- Constant Field Values
-
POPOVER
public static final String POPOVER
- See Also:
- Constant Field Values
-
RADIO
public static final String RADIO
- See Also:
- Constant Field Values
-
RELOAD
public static final String RELOAD
TODO: Must be replaced by a behavior- See Also:
- Constant Field Values
-
SORTER
public static final String SORTER
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Facets[] 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 (Facets c : Facets.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Facets 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
-
-