Uses of Class
org.apache.pivot.collections.ArrayList
-
Packages that use ArrayList Package Description org.apache.pivot.charts.content Contains classes representing chart data.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.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 ArrayList in org.apache.pivot.charts.content
Subclasses of ArrayList in org.apache.pivot.charts.content Modifier and Type Class Description class
HistogramSeries<T>
class
ValueSeries<T>
Represents series data for value chart views. -
Uses of ArrayList in org.apache.pivot.collections
Methods in org.apache.pivot.collections with parameters of type ArrayList Modifier and Type Method Description static <T extends java.lang.Comparable<? super T>>
intArrayList. binarySearch(ArrayList<T> arrayList, T item)
Search for an item in the given list using the elements' "natural" ordering.static <T> int
ArrayList. binarySearch(ArrayList<T> arrayList, T item, java.util.Comparator<T> comparator)
Search for a given element in the list using the "binary search" algorithm, which requires a comparator to establish the sort order of the elements.static <T extends java.lang.Comparable<? super T>>
voidArrayList. sort(ArrayList<T> arrayList)
Sort the given array list according to the "natural" sort order of the comparable elements.static <T> void
ArrayList. sort(ArrayList<T> arrayList, int from, int to, java.util.Comparator<T> comparator)
Sort a portion of the given list.static <T> void
ArrayList. sort(ArrayList<T> arrayList, java.util.Comparator<T> comparator)
Sort the current contents of the given list using the given comparator.Constructors in org.apache.pivot.collections with parameters of type ArrayList Constructor Description ArrayList(ArrayList<T> arrayList)
Copy the given ArrayList into a new one.ArrayList(ArrayList<T> arrayList, int index, int count)
Construct a new ArrayList with a subset of the given ArrayList. -
Uses of ArrayList in org.apache.pivot.wtk
Fields in org.apache.pivot.wtk declared as ArrayList Modifier and Type Field Description protected static ArrayList<Application>
ApplicationContext. applications
protected static ArrayList<Display>
ApplicationContext. displays
-
Uses of ArrayList in org.apache.pivot.wtk.skin.terra
Methods in org.apache.pivot.wtk.skin.terra that return ArrayList Modifier and Type Method Description static ArrayList<java.lang.Integer>
TerraTableViewSkin. getColumnWidths(TableView tableView, int width)
Methods in org.apache.pivot.wtk.skin.terra with parameters of type ArrayList Modifier and Type Method Description protected int
TerraTableViewSkin. getVariableRowHeight(int rowIndex, ArrayList<java.lang.Integer> columnWidthsArgument)
-