public static enum TableColumn.ColumnCss extends Enum<TableColumn.ColumnCss>
| Enum Constant and Description |
|---|
DATE
Dates will be shown using Luxon.
|
NO_SORT
Disables sorting of the column.
|
NONE
No special rendering, the display property will be shown as such.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TableColumn.ColumnCss |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableColumn.ColumnCss[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableColumn.ColumnCss NONE
public static final TableColumn.ColumnCss DATE
public static final TableColumn.ColumnCss NO_SORT
NONE.public static TableColumn.ColumnCss[] values()
for (TableColumn.ColumnCss c : TableColumn.ColumnCss.values()) System.out.println(c);
public static TableColumn.ColumnCss valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<TableColumn.ColumnCss>Copyright © 2016–2019. All rights reserved.