public static enum SortEvent.SortType extends java.lang.Enum<SortEvent.SortType>
| Enum Constant and Description |
|---|
COLUMN
Sort type used when an end user sorts the data values within a column, e.g.
|
COLUMN_HEADER
Sort type used when an end user sorts the header labels within a layer of the column header.
|
ROW_HEADER
Sort type used when an end user sorts the header labels within a layer of the row header.
|
| Modifier and Type | Method and Description |
|---|---|
static SortEvent.SortType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SortEvent.SortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortEvent.SortType COLUMN
COLUMN_SORT_SLICE_PARAM, value is an Integer that indicates the zero-based index of the column being sorted.
SORT_DIRECTION_PARAM, value is an Integer, which can either be SORT_ASCENDING or SORT_DESCENDING.
COLUMN_SORT_GROUPED_PARAM, value is a Boolean that indicates whether the sort will retain groupings on the row edge.
public static final SortEvent.SortType ROW_HEADER
HEADER_SORT_LAYER_PARAM, value is an Integer that indicates the zero-based index of the layer being sorted, where the outermost layer is layer 0.
SORT_DIRECTION_PARAM, value is an Integer, which can either be SORT_ASCENDING or SORT_DESCENDING.
public static final SortEvent.SortType COLUMN_HEADER
HEADER_SORT_LAYER_PARAM, value is an Integer that indicates the zero-based index of the layer being sorted, where the outermost layer is layer 0.
SORT_DIRECTION_PARAM, value is an Integer, which can either be SORT_ASCENDING or SORT_DESCENDING.
public static SortEvent.SortType[] values()
for (SortEvent.SortType c : SortEvent.SortType.values()) System.out.println(c);
public static SortEvent.SortType 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