|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Table.ColumnHeaderMode>
com.vaadin.ui.Table.ColumnHeaderMode
public static enum Table.ColumnHeaderMode
Enum Constant Summary | |
---|---|
EXPLICIT
Column headers are explicitly specified with Table.setColumnHeaders(String[]) . |
|
EXPLICIT_DEFAULTS_ID
Column headers are explicitly specified with Table.setColumnHeaders(String[]) . |
|
HIDDEN
Column headers are hidden. |
|
ID
Property ID:s are used as column headers. |
Method Summary | |
---|---|
static Table.ColumnHeaderMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Table.ColumnHeaderMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Table.ColumnHeaderMode HIDDEN
public static final Table.ColumnHeaderMode ID
public static final Table.ColumnHeaderMode EXPLICIT
Table.setColumnHeaders(String[])
.
public static final Table.ColumnHeaderMode EXPLICIT_DEFAULTS_ID
Table.setColumnHeaders(String[])
. If a header is not specified for
a given property, its property id is used instead.
This is the default behavior.
Method Detail |
---|
public static Table.ColumnHeaderMode[] values()
for (Table.ColumnHeaderMode c : Table.ColumnHeaderMode.values()) System.out.println(c);
public static Table.ColumnHeaderMode 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |