Uses of Class
org.apache.pivot.wtk.SortDirection
-
Packages that use SortDirection Package Description org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. -
-
Uses of SortDirection in org.apache.pivot.wtk
Methods in org.apache.pivot.wtk that return SortDirection Modifier and Type Method Description SortDirection
TableView.SortDictionary. get(java.lang.String columnName)
SortDirection
TableView.SortDictionary. put(java.lang.String columnName, SortDirection sortDirection)
SortDirection
TableView.SortDictionary. remove(java.lang.String columnName)
static SortDirection
SortDirection. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SortDirection[]
SortDirection. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.pivot.wtk that return types with arguments of type SortDirection Modifier and Type Method Description Dictionary.Pair<java.lang.String,SortDirection>
TableView.SortDictionary. get(int index)
Dictionary<java.lang.String,SortDirection>
TableView. setSort(java.lang.String sort)
Sets the table view's sort.Dictionary<java.lang.String,SortDirection>
TableView. setSort(java.lang.String columnName, SortDirection sortDirection)
Sets the table view's sort.Dictionary<java.lang.String,SortDirection>
TableView. setSort(Sequence<Dictionary.Pair<java.lang.String,SortDirection>> sort)
Sets the table view's sort.Methods in org.apache.pivot.wtk with parameters of type SortDirection Modifier and Type Method Description SortDirection
TableView.SortDictionary. put(java.lang.String columnName, SortDirection sortDirection)
Dictionary<java.lang.String,SortDirection>
TableView. setSort(java.lang.String columnName, SortDirection sortDirection)
Sets the table view's sort.void
TableViewSortListener.Adapter. sortRemoved(TableView tableView, java.lang.String columnName, SortDirection sortDirection)
Deprecated.void
TableViewSortListener.Listeners. sortRemoved(TableView tableView, java.lang.String columnName, SortDirection sortDirection)
default void
TableViewSortListener. sortRemoved(TableView tableView, java.lang.String columnName, SortDirection sortDirection)
Called when a sort has been removed from a table view.void
TableViewSortListener.Adapter. sortUpdated(TableView tableView, java.lang.String columnName, SortDirection previousSortDirection)
Deprecated.void
TableViewSortListener.Listeners. sortUpdated(TableView tableView, java.lang.String columnName, SortDirection previousSortDirection)
default void
TableViewSortListener. sortUpdated(TableView tableView, java.lang.String columnName, SortDirection previousSortDirection)
Called when a sort has been updated in a table view.Method parameters in org.apache.pivot.wtk with type arguments of type SortDirection Modifier and Type Method Description Dictionary<java.lang.String,SortDirection>
TableView. setSort(Sequence<Dictionary.Pair<java.lang.String,SortDirection>> sort)
Sets the table view's sort. -
Uses of SortDirection in org.apache.pivot.wtk.skin.terra
Methods in org.apache.pivot.wtk.skin.terra with parameters of type SortDirection Modifier and Type Method Description static TerraFileBrowserSkin.FileComparator
TerraFileBrowserSkin. getFileComparator(java.lang.String columnName, SortDirection sortDirection)
static TerraVFSBrowserSkin.FileComparator
TerraVFSBrowserSkin. getFileComparator(java.lang.String columnName, SortDirection sortDirection)
void
TerraTableViewHeaderSkin. sortRemoved(TableView tableView, java.lang.String columnName, SortDirection sortDirection)
void
TerraTableViewHeaderSkin. sortUpdated(TableView tableView, java.lang.String columnName, SortDirection previousSortDirection)
-