public static enum TableFilterHeader.Position extends Enum<TableFilterHeader.Position>
Location of the header in relation to the table
Note that this location is only meaningful when the table is set inside a scroll pane, and this header instance is not explicitly included in a container
Modifier and Type | Method and Description |
---|---|
static TableFilterHeader.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableFilterHeader.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableFilterHeader.Position TOP
public static final TableFilterHeader.Position INLINE
public static final TableFilterHeader.Position NONE
public static final TableFilterHeader.Position REPLACE
public static TableFilterHeader.Position[] values()
for (TableFilterHeader.Position c : TableFilterHeader.Position.values()) System.out.println(c);
public static TableFilterHeader.Position 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 null