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.util
collections.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. chartData
Methods 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 void
ChartViewListener. chartDataChanged(ChartView chartView, List<?> previousChartData)
Fired when a chart view's data changes.void
ChartViewListener.Listeners. chartDataChanged(ChartView chartView, List<?> previousChartData)
void
ChartView. setChartData(List<?> chartData)
void
ChartView. 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 class
HistogramSeries<T>
class
ValueSeries<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 void
ChartViewSkin. 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 class
ArrayList<T>
Implementation of theList
interface that is backed by an array.class
EnumList<E extends java.lang.Enum<E>>
A read-only implementation of theList
interface that is backed by an enum.class
LinkedList<T>
Implementation of theList
interface that is backed by a linked list.Methods in org.apache.pivot.collections with parameters of type List Modifier and Type Method Description void
List.ListListenerList. comparatorChanged(List<T> list, java.util.Comparator<T> previousComparator)
void
ListListener.Adapter. comparatorChanged(List<T> list, java.util.Comparator<T> previousComparator)
Deprecated.default void
ListListener. comparatorChanged(List<T> list, java.util.Comparator<T> previousComparator)
Called when a list's comparator has changed.void
List.ListListenerList. itemInserted(List<T> list, int index)
void
ListListener.Adapter. itemInserted(List<T> list, int index)
Deprecated.default void
ListListener. itemInserted(List<T> list, int index)
Called when an item has been inserted into a list.void
List.ListListenerList. itemsRemoved(List<T> list, int index, Sequence<T> items)
void
ListListener.Adapter. itemsRemoved(List<T> list, int index, Sequence<T> items)
Deprecated.default void
ListListener. itemsRemoved(List<T> list, int index, Sequence<T> items)
Called when items have been removed from a list.void
List.ListListenerList. itemUpdated(List<T> list, int index, T previousItem)
void
ListListener.Adapter. itemUpdated(List<T> list, int index, T previousItem)
Deprecated.default void
ListListener. itemUpdated(List<T> list, int index, T previousItem)
Called when a list item has been updated.void
List.ListListenerList. listCleared(List<T> list)
void
ListListener.Adapter. listCleared(List<T> list)
Deprecated.default void
ListListener. 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 class
ListAdapter<T>
Implementation of theList
interface that is backed by an instance ofList
; in other words, adapting ajava.util.List
to one of ourList
s. -
Uses of List in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement List Modifier and Type Class Description class
SynchronizedList<T>
Synchronized implementation of theList
interface.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 class
ImmutableList<T>
Unmodifiable implementation of theList
interface.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 class
FileList
Collection representing a list of files.class
FileObjectList
Collection 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 void
CSVSerializerListener.Adapter. beginList(CSVSerializer csvSerializer, List<?> list)
Deprecated.default void
CSVSerializerListener. beginList(CSVSerializer csvSerializer, List<?> list)
Called when the serializer has begun reading the list.void
CSVSerializerListener.Listeners. beginList(CSVSerializer csvSerializer, List<?> list)
java.lang.String
CSVSerializer. getMIMEType(List<?> objects)
void
CSVSerializer. writeObject(List<?> items, java.io.OutputStream outputStream)
Writes values to a comma-separated value stream.void
CSVSerializer. 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 class
ResultList
Implementation of theList
interface 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.Object
ListView.ItemBindMapping. get(List<?> listData, int index)
Retrieves the value at the given index during aComponent.store(Object)
operation.java.lang.Object
Spinner.ItemBindMapping. get(List<?> spinnerData, int index)
Retrieves the item at the given index during aComponent.store(Object)
operation.java.lang.Object
TableView.SelectedRowBindMapping. get(List<?> tableData, int index)
Retrieves the value at the given index.int
ListView.ItemBindMapping. indexOf(List<?> listData, java.lang.Object value)
Returns the index of the item in the source list during aComponent.load(Object)
operation.int
Spinner.ItemBindMapping. indexOf(List<?> spinnerData, java.lang.Object value)
Returns the index of the item in the source list during aComponent.load(Object)
operation.int
TableView.SelectedRowBindMapping. indexOf(List<?> tableData, java.lang.Object value)
Returns the index of the row in the source list.void
ListButtonListener.Adapter. listDataChanged(ListButton listButton, List<?> previousListData)
Deprecated.default void
ListButtonListener. listDataChanged(ListButton listButton, List<?> previousListData)
Called when a list button's list data has changed.void
ListButtonListener.Listeners. listDataChanged(ListButton listButton, List<?> previousListData)
void
ListViewListener.Adapter. listDataChanged(ListView listView, List<?> previousListData)
Deprecated.default void
ListViewListener. listDataChanged(ListView listView, List<?> previousListData)
Called when a list view's list data has changed.void
ListViewListener.Listeners. listDataChanged(ListView listView, List<?> previousListData)
void
ListButton. setListData(List<?> listData)
Sets the list button's list data.void
ListView. setListData(List<?> listData)
Sets the list data.void
Spinner. setSpinnerData(List<?> spinnerData)
Sets the spinner data.void
SuggestionPopup. setSuggestionData(List<?> suggestionData)
Sets the list of suggestions presented by the popup.void
TableView. setTableData(List<?> tableData)
Sets the table data.void
TreeView. setTreeData(List<?> treeData)
Sets the tree data.void
SpinnerListener.Adapter. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
Deprecated.void
SpinnerListener.Listeners. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
default void
SpinnerListener. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
Called when a spinner's data has changed.void
SuggestionPopupListener.Adapter. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
Deprecated.void
SuggestionPopupListener.Listeners. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
default void
SuggestionPopupListener. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
Called when a suggestion popup's suggestions have changed.void
TableViewListener.Adapter. tableDataChanged(TableView tableView, List<?> previousTableData)
Deprecated.void
TableViewListener.Listeners. tableDataChanged(TableView tableView, List<?> previousTableData)
default void
TableViewListener. tableDataChanged(TableView tableView, List<?> previousTableData)
Called when a table view's table data has changed.void
TreeViewListener.Adapter. treeDataChanged(TreeView treeView, List<?> previousTreeData)
Deprecated.void
TreeViewListener.Listeners. treeDataChanged(TreeView treeView, List<?> previousTreeData)
default void
TreeViewListener. treeDataChanged(TreeView treeView, List<?> previousTreeData)
Called when a tree view's data has changed.java.lang.Object
ListView.ListDataBindMapping. valueOf(List<?> listData)
Converts list data to a context value during aComponent.store(Object)
operation.java.lang.Object
Spinner.SpinnerDataBindMapping. valueOf(List<?> spinnerData)
Converts spinner data to a context value during aComponent.store(Object)
operation.java.lang.Object
TableView.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 newTreeView
with 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 class
CalendarDateSpinnerData
Spinner data model that presents a bounded list of calendar dates.class
NumericSpinnerData
Spinner data model that presents a bounded list of integers.class
TreeBranch
Default 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.Object
ListViewIndexBindMapping. get(List<?> listData, int index)
Called duringstore
, andindex
is the selected item index.java.lang.Object
SpinnerIndexBindMapping. get(List<?> spinnerData, int index)
Called duringstore
, andindex
is the selected item index.int
ListViewIndexBindMapping. indexOf(List<?> listData, java.lang.Object value)
Called duringload
, andvalue
is what is stored in our data object (which is theInteger
index value).int
SpinnerIndexBindMapping. indexOf(List<?> spinnerData, java.lang.Object value)
Called duringload
, andvalue
is what is stored in our data object (which is theInteger
index 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 void
ListButtonSkin. 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 void
TerraListViewSkin. listDataChanged(ListView listView, List<?> previousListData)
void
TerraSpinnerSkin. spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
void
TerraSuggestionPopupSkin. suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
void
TerraTableViewSkin. tableDataChanged(TableView tableView, List<?> previousTableData)
void
TerraTreeViewSkin. 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 class
Element
Node 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 ofroot
whose tag names match the given name.
-