public enum ListViewHeaderStyles extends java.lang.Enum<ListViewHeaderStyles>
List
view.Enum Constant and Description |
---|
Footer
Draws a footer.
|
MainHeader
Draws a main header, which wraps all cells.
|
Subheader
Draw a sub-header below the main header.
|
SubheaderPerCell
Draw the header background for each cell separately, rather than for the whole interval.
|
Title
Display the cells' dates in the header.
|
Modifier and Type | Method and Description |
---|---|
static ListViewHeaderStyles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListViewHeaderStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListViewHeaderStyles Title
public static final ListViewHeaderStyles SubheaderPerCell
public static final ListViewHeaderStyles Subheader
public static final ListViewHeaderStyles MainHeader
public static final ListViewHeaderStyles Footer
public static ListViewHeaderStyles[] values()
for (ListViewHeaderStyles c : ListViewHeaderStyles.values()) System.out.println(c);
public static ListViewHeaderStyles valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null