Uses of Interface
org.apache.pivot.collections.Stack
-
Packages that use Stack Package Description 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.concurrent Contains a set of thread-safe collection implementations. -
-
Uses of Stack in org.apache.pivot.collections
Classes in org.apache.pivot.collections that implement Stack Modifier and Type Class Description classArrayStack<T>classLinkedStack<T>Implementation of theStackinterface that is backed by a linked list.Methods in org.apache.pivot.collections with parameters of type Stack Modifier and Type Method Description voidStackListener.Adapter. comparatorChanged(Stack<T> stack, java.util.Comparator<T> previousComparator)Deprecated.default voidStackListener. comparatorChanged(Stack<T> stack, java.util.Comparator<T> previousComparator)Called when a stack's comparator has changed.voidStackListener.Listeners. comparatorChanged(Stack<T> stack, java.util.Comparator<T> previousComparator)voidStackListener.Adapter. itemPopped(Stack<T> stack, T item)Deprecated.default voidStackListener. itemPopped(Stack<T> stack, T item)Called when an item has been popped off of a stack.voidStackListener.Listeners. itemPopped(Stack<T> stack, T item)voidStackListener.Adapter. itemPushed(Stack<T> stack, T item)Deprecated.default voidStackListener. itemPushed(Stack<T> stack, T item)Called when an item has been pushed onto a stack.voidStackListener.Listeners. itemPushed(Stack<T> stack, T item)voidStackListener.Adapter. stackCleared(Stack<T> stack)Deprecated.voidStackListener.Listeners. stackCleared(Stack<T> stack)default voidStackListener. stackCleared(Stack<T> stack)Called when a stack has been cleared. -
Uses of Stack in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Stack Modifier and Type Class Description classSynchronizedStack<T>Synchronized implementation of theStackinterface.Constructors in org.apache.pivot.collections.concurrent with parameters of type Stack Constructor Description SynchronizedStack(Stack<T> stack)
-