Uses of Class
org.apache.pivot.wtk.SortDirection

Packages that use SortDirection
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
 SortDirection TableView.SortDictionary.get(String columnName)
           
 SortDirection TableView.SortDictionary.put(String columnName, SortDirection sortDirection)
           
 SortDirection TableView.SortDictionary.remove(String columnName)
           
static SortDirection SortDirection.valueOf(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
 Dictionary.Pair<String,SortDirection> TableView.SortDictionary.get(int index)
           
 Dictionary<String,SortDirection> TableView.setSort(Sequence<Dictionary.Pair<String,SortDirection>> sort)
          Sets the table view's sort.
 Dictionary<String,SortDirection> TableView.setSort(String sort)
          Sets the table view's sort.
 Dictionary<String,SortDirection> TableView.setSort(String columnName, SortDirection sortDirection)
          Sets the table view's sort.
 

Methods in org.apache.pivot.wtk with parameters of type SortDirection
 SortDirection TableView.SortDictionary.put(String columnName, SortDirection sortDirection)
           
 Dictionary<String,SortDirection> TableView.setSort(String columnName, SortDirection sortDirection)
          Sets the table view's sort.
 void TableViewSortListener.sortRemoved(TableView tableView, String columnName, SortDirection sortDirection)
          Called when a sort has been removed from a table view.
 void TableViewSortListener.Adapter.sortRemoved(TableView tableView, String columnName, SortDirection sortDirection)
           
 void TableViewSortListener.sortUpdated(TableView tableView, String columnName, SortDirection previousSortDirection)
          Called when a sort has been updated in a table view.
 void TableViewSortListener.Adapter.sortUpdated(TableView tableView, String columnName, SortDirection previousSortDirection)
           
 

Method parameters in org.apache.pivot.wtk with type arguments of type SortDirection
 Dictionary<String,SortDirection> TableView.setSort(Sequence<Dictionary.Pair<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
static TerraFileBrowserSkin.FileComparator TerraFileBrowserSkin.getFileComparator(String columnName, SortDirection sortDirection)
          File comparator.
 void TerraTableViewHeaderSkin.sortRemoved(TableView tableView, String columnName, SortDirection sortDirection)
           
 void TerraTableViewHeaderSkin.sortUpdated(TableView tableView, String columnName, SortDirection previousSortDirection)