Uses of Interface
org.apache.pivot.collections.List
-
Packages that use List Package Description org.apache.pivot.charts Contains a collection of components for use in charting applications.org.apache.pivot.charts.content Contains classes representing chart data.org.apache.pivot.charts.skin Contains abstract base classes for chart view skins.org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components.org.apache.pivot.collections.adapter Provides a set of collection implementations that are backed byjava.utilcollections.org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations.org.apache.pivot.collections.immutable Contains a set of read-only collection implementations.org.apache.pivot.io Contains classes related to input/output operations.org.apache.pivot.json Contains classes that facilitate interaction with JSON and JSON-like data structures.org.apache.pivot.serialization Contains a set of classes for use in data serialization.org.apache.pivot.sql Contains classes for working with SQL data.org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows.org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins.org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme.org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. -
-
Uses of List in org.apache.pivot.charts
Fields in org.apache.pivot.charts declared as List Modifier and Type Field Description protected List<?>ChartView. chartDataMethods in org.apache.pivot.charts that return List Modifier and Type Method Description List<?>ChartView. getChartData()List<ValueMarker>ChartView. getValueMarkers()Methods in org.apache.pivot.charts with parameters of type List Modifier and Type Method Description voidChartViewListener. chartDataChanged(ChartView chartView, List<?> previousChartData)Fired when a chart view's data changes.voidChartViewListener.Listeners. chartDataChanged(ChartView chartView, List<?> previousChartData)voidChartView. setChartData(List<?> chartData)voidChartView. setValueMarkers(List<ValueMarker> valueMarkers)Constructors in org.apache.pivot.charts with parameters of type List Constructor Description ChartView(java.lang.String seriesNameKey, List<?> chartData) -
Uses of List in org.apache.pivot.charts.content
Classes in org.apache.pivot.charts.content that implement List Modifier and Type Class Description classHistogramSeries<T>classValueSeries<T>Represents series data for value chart views. -
Uses of List in org.apache.pivot.charts.skin
Methods in org.apache.pivot.charts.skin with parameters of type List Modifier and Type Method Description voidChartViewSkin. chartDataChanged(ChartView chartView, List<?> previousChartData) -
Uses of List in org.apache.pivot.collections
Classes in org.apache.pivot.collections that implement List Modifier and Type Class Description classArrayList<T>Implementation of theListinterface that is backed by an array.classEnumList<E extends java.lang.Enum<E>>A read-only implementation of theListinterface that is backed by an enum.classLinkedList<T>Implementation of theListinterface that is backed by a linked list.Methods in org.apache.pivot.collections with parameters of type List Modifier and Type Method Description voidList.ListListenerList. comparatorChanged(List<T> list, java.util.Comparator<T> previousComparator)voidListListener.Adapter. comparatorChanged(List<T> list, java.util.Comparator<T> previousComparator)Deprecated.default voidListListener. comparatorChanged(List<T> list, java.util.Comparator<T> previousComparator)Called when a list's comparator has changed.voidList.ListListenerList. itemInserted(List<T> list, int index)voidListListener.Adapter. itemInserted(List<T> list, int index)Deprecated.default voidListListener. itemInserted(List<T> list, int index)Called when an item has been inserted into a list.voidList.ListListenerList. itemsRemoved(List<T> list, int index, Sequence<T> items)voidListListener.Adapter. itemsRemoved(List<T> list, int index, Sequence<T> items)Deprecated.default voidListListener. itemsRemoved(List<T> list, int index, Sequence<T> items)Called when items have been removed from a list.voidList.ListListenerList. itemUpdated(List<T> list, int index, T previousItem)voidListListener.Adapter. itemUpdated(List<T> list, int index, T previousItem)Deprecated.default voidListListener. itemUpdated(List<T> list, int index, T previousItem)Called when a list item has been updated.voidList.ListListenerList. listCleared(List<T> list)voidListListener.Adapter. listCleared(List<T> list)Deprecated.default voidListListener. listCleared(List<T> list)Called when list data has been reset. -
Uses of List in org.apache.pivot.collections.adapter
Classes in org.apache.pivot.collections.adapter that implement List Modifier and Type Class Description classListAdapter<T>Implementation of theListinterface that is backed by an instance ofList; in other words, adapting ajava.util.Listto one of ourLists. -
Uses of List in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement List Modifier and Type Class Description classSynchronizedList<T>Synchronized implementation of theListinterface.Constructors in org.apache.pivot.collections.concurrent with parameters of type List Constructor Description SynchronizedList(List<T> list) -
Uses of List in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement List Modifier and Type Class Description classImmutableList<T>Unmodifiable implementation of theListinterface.Constructors in org.apache.pivot.collections.immutable with parameters of type List Constructor Description ImmutableList(List<T> list) -
Uses of List in org.apache.pivot.io
Classes in org.apache.pivot.io that implement List Modifier and Type Class Description classFileListCollection representing a list of files.classFileObjectListCollection representing a list of files. -
Uses of List in org.apache.pivot.json
Methods in org.apache.pivot.json that return List Modifier and Type Method Description static List<?>JSONSerializer. parseList(java.lang.String json)Converts a JSON value to a list. -
Uses of List in org.apache.pivot.serialization
Methods in org.apache.pivot.serialization that return List Modifier and Type Method Description List<?>CSVSerializer. readObject(java.io.InputStream inputStream)Reads values from a comma-separated value stream.List<?>CSVSerializer. readObject(java.io.Reader reader)Reads values from a comma-separated value stream.Methods in org.apache.pivot.serialization with parameters of type List Modifier and Type Method Description voidCSVSerializerListener.Adapter. beginList(CSVSerializer csvSerializer, List<?> list)Deprecated.default voidCSVSerializerListener. beginList(CSVSerializer csvSerializer, List<?> list)Called when the serializer has begun reading the list.voidCSVSerializerListener.Listeners. beginList(CSVSerializer csvSerializer, List<?> list)java.lang.StringCSVSerializer. getMIMEType(List<?> objects)voidCSVSerializer. writeObject(List<?> items, java.io.OutputStream outputStream)Writes values to a comma-separated value stream.voidCSVSerializer. writeObject(List<?> items, java.io.Writer writer)Writes values to a comma-separated value stream. -
Uses of List in org.apache.pivot.sql
Classes in org.apache.pivot.sql that implement List Modifier and Type Class Description classResultListImplementation of theListinterface that is backed by a instance ofResultSet. -
Uses of List in org.apache.pivot.wtk
Methods in org.apache.pivot.wtk that return List Modifier and Type Method Description static List<Display>ApplicationContext. getDisplays()List<?>ListButton. getListData()Returns the list data associated with this list button.List<?>ListView. getListData()Returns the list data.List<?>Spinner. getSpinnerData()List<?>SuggestionPopup. getSuggestionData()List<?>TableView. getTableData()Returns the table data.List<?>TreeView. getTreeData()Returns the tree view's data model.List<?>ListView.ListDataBindMapping. toListData(java.lang.Object value)Converts a context value to list data during aComponent.load(Object)operation.List<?>Spinner.SpinnerDataBindMapping. toSpinnerData(java.lang.Object value)Converts a context value to spinner data during aComponent.load(Object)operation.List<?>TableView.TableDataBindMapping. toTableData(java.lang.Object value)Converts a context value to table data.Methods in org.apache.pivot.wtk with parameters of type List Modifier and Type Method Description java.lang.ObjectListView.ItemBindMapping. get(List<?> listData, int index)Retrieves the value at the given index during aComponent.store(Object)operation.java.lang.ObjectSpinner.ItemBindMapping. get(List<?> spinnerData, int index)Retrieves the item at the given index during aComponent.store(Object)operation.java.lang.ObjectTableView.SelectedRowBindMapping. get(List<?> tableData, int index)Retrieves the value at the given index.intListView.ItemBindMapping. indexOf(List<?> listData, java.lang.Object value)Returns the index of the item in the source list during aComponent.load(Object)operation.intSpinner.ItemBindMapping. indexOf(List<?> spinnerData, java.lang.Object value)Returns the index of the item in the source list during aComponent.load(Object)operation.intTableView.SelectedRowBindMapping. indexOf(List<?> tableData, java.lang.Object value)Returns the index of the row in the source list.voidListButtonListener.Adapter. listDataChanged(ListButton listButton, List<?> previousListData)Deprecated.default voidListButtonListener. listDataChanged(ListButton listButton, List<?> previousListData)Called when a list button's list data has changed.voidListButtonListener.Listeners. listDataChanged(ListButton listButton, List<?> previousListData)voidListViewListener.Adapter. listDataChanged(ListView listView, List<?> previousListData)Deprecated.default voidListViewListener. listDataChanged(ListView listView, List<?> previousListData)Called when a list view's list data has changed.voidListViewListener.Listeners. listDataChanged(ListView listView, List<?> previousListData)voidListButton. setListData(List<?> listData)Sets the list button's list data.voidListView. setListData(List<?> listData)Sets the list data.voidSpinner. setSpinnerData(List<?> spinnerData)Sets the spinner data.voidSuggestionPopup. setSuggestionData(List<?> suggestionData)Sets the list of suggestions presented by the popup.voidTableView. setTableData(List<?> tableData)Sets the table data.voidTreeView. setTreeData(List<?> treeData)Sets the tree data.voidSpinnerListener.Adapter. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)Deprecated.voidSpinnerListener.Listeners. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)default voidSpinnerListener. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)Called when a spinner's data has changed.voidSuggestionPopupListener.Adapter. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)Deprecated.voidSuggestionPopupListener.Listeners. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)default voidSuggestionPopupListener. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)Called when a suggestion popup's suggestions have changed.voidTableViewListener.Adapter. tableDataChanged(TableView tableView, List<?> previousTableData)Deprecated.voidTableViewListener.Listeners. tableDataChanged(TableView tableView, List<?> previousTableData)default voidTableViewListener. tableDataChanged(TableView tableView, List<?> previousTableData)Called when a table view's table data has changed.voidTreeViewListener.Adapter. treeDataChanged(TreeView treeView, List<?> previousTreeData)Deprecated.voidTreeViewListener.Listeners. treeDataChanged(TreeView treeView, List<?> previousTreeData)default voidTreeViewListener. treeDataChanged(TreeView treeView, List<?> previousTreeData)Called when a tree view's data has changed.java.lang.ObjectListView.ListDataBindMapping. valueOf(List<?> listData)Converts list data to a context value during aComponent.store(Object)operation.java.lang.ObjectSpinner.SpinnerDataBindMapping. valueOf(List<?> spinnerData)Converts spinner data to a context value during aComponent.store(Object)operation.java.lang.ObjectTableView.TableDataBindMapping. valueOf(List<?> tableData)Converts table data to a context value.Constructors in org.apache.pivot.wtk with parameters of type List Constructor Description ListButton(java.lang.Object buttonData, List<?> listData)Creates a list button with the given button and list data.ListButton(List<?> listData)Creates a list button with no button data and the given list data.ListView(List<?> listData)Creates a list view populated with the given list data.Spinner(List<?> spinnerData)Creates a spinner populated with the given spinner data.SuggestionPopup(List<?> suggestions)TableView(List<?> tableData)Creates a new table view populated with the given table data.TreeView(List<?> treeData)Creates a newTreeViewwith the specified tree data. -
Uses of List in org.apache.pivot.wtk.content
Classes in org.apache.pivot.wtk.content that implement List Modifier and Type Class Description classCalendarDateSpinnerDataSpinner data model that presents a bounded list of calendar dates.classNumericSpinnerDataSpinner data model that presents a bounded list of integers.classTreeBranchDefault tree branch implementation.Methods in org.apache.pivot.wtk.content that return List Modifier and Type Method Description static List<ColorItem>ColorItem. allCSSColors()Methods in org.apache.pivot.wtk.content with parameters of type List Modifier and Type Method Description java.lang.ObjectListViewIndexBindMapping. get(List<?> listData, int index)Called duringstore, andindexis the selected item index.java.lang.ObjectSpinnerIndexBindMapping. get(List<?> spinnerData, int index)Called duringstore, andindexis the selected item index.intListViewIndexBindMapping. indexOf(List<?> listData, java.lang.Object value)Called duringload, andvalueis what is stored in our data object (which is theIntegerindex value).intSpinnerIndexBindMapping. indexOf(List<?> spinnerData, java.lang.Object value)Called duringload, andvalueis what is stored in our data object (which is theIntegerindex value). -
Uses of List in org.apache.pivot.wtk.skin
Methods in org.apache.pivot.wtk.skin with parameters of type List Modifier and Type Method Description voidListButtonSkin. listDataChanged(ListButton listButton, List<?> previousListData) -
Uses of List in org.apache.pivot.wtk.skin.terra
Methods in org.apache.pivot.wtk.skin.terra with parameters of type List Modifier and Type Method Description voidTerraListViewSkin. listDataChanged(ListView listView, List<?> previousListData)voidTerraSpinnerSkin. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)voidTerraSuggestionPopupSkin. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)voidTerraTableViewSkin. tableDataChanged(TableView tableView, List<?> previousTableData)voidTerraTreeViewSkin. treeDataChanged(TreeView treeView, List<?> previousTreeData) -
Uses of List in org.apache.pivot.xml
Classes in org.apache.pivot.xml that implement List Modifier and Type Class Description classElementNode class representing an XML element.Methods in org.apache.pivot.xml that return List Modifier and Type Method Description List<Element>Element. getElements(java.lang.String name)Returns the sub-elements of of this element whose tag names match the given name.static List<Element>XML. getElements(Element root, java.lang.String path, java.lang.String name)Returns the sub-elements of a descendant ofrootwhose tag names match the given name.
-