public enum TablePackPolicy extends java.lang.Enum<TablePackPolicy>
Enum Constant and Description |
---|
DATA_ALL
Consider all data, can be very expensive for virtual tables
|
DATA_VISIBLE
Consider only the visible data (inside the visible viewport)
|
HEADER
Consider only the table header
|
HEADER_AND_DATA_ALL
Consider all data and the header, can be very expensive for virtual tables
|
HEADER_AND_DATA_VISIBLE
Consider the header and the visible data (inside the visible viewport)
|
Modifier and Type | Method and Description |
---|---|
boolean |
considerAllData() |
boolean |
considerData() |
boolean |
considerHeader() |
static TablePackPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TablePackPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TablePackPolicy HEADER
public static final TablePackPolicy DATA_ALL
public static final TablePackPolicy DATA_VISIBLE
public static final TablePackPolicy HEADER_AND_DATA_ALL
public static final TablePackPolicy HEADER_AND_DATA_VISIBLE
public static TablePackPolicy[] values()
for (TablePackPolicy c : TablePackPolicy.values()) System.out.println(c);
public static TablePackPolicy 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 nullpublic boolean considerData()
public boolean considerHeader()
public boolean considerAllData()
Siehe auch Jowidgets Nutzerhandbuch