Uses of Interface
org.multiverse.api.collections.TxnCollection
-
Packages that use TxnCollection Package Description org.multiverse.api.collections org.multiverse.collections -
-
Uses of TxnCollection in org.multiverse.api.collections
Subinterfaces of TxnCollection in org.multiverse.api.collections Modifier and Type Interface Description interface
TxnDeque<E>
interface
TxnList<E>
interface
TxnQueue<E>
interface
TxnSet<E>
interface
TxnStack<E>
Methods in org.multiverse.api.collections that return TxnCollection Modifier and Type Method Description TxnCollection<V>
TxnMap. values()
Returns aTxnCollection
view of the values contained in this map.TxnCollection<V>
TxnMap. values(Txn txn)
Returns aTxnCollection
view of the values contained in this map.Methods in org.multiverse.api.collections with parameters of type TxnCollection Modifier and Type Method Description boolean
TxnCollection. addAll(TxnCollection<? extends E> c)
Adds all of the elements in the specified collection to this collection (optional operation).boolean
TxnCollection. addAll(Txn txn, TxnCollection<? extends E> c)
Adds all of the elements in the specified collection to this collection (optional operation). -
Uses of TxnCollection in org.multiverse.collections
Classes in org.multiverse.collections that implement TxnCollection Modifier and Type Class Description class
AbstractTxnCollection<E>
class
NaiveTxnHashSet<E>
class
NaiveTxnLinkedList<E>
A LinkedList implementation that also acts as a TxnQueue, TxnDeque.class
NaiveTxnStack<E>
Methods in org.multiverse.collections that return TxnCollection Modifier and Type Method Description TxnCollection<V>
AbstractTxnMap. values()
TxnCollection<V>
NaiveTxnHashMap. values(Txn tx)
Methods in org.multiverse.collections with parameters of type TxnCollection Modifier and Type Method Description boolean
AbstractTxnCollection. addAll(TxnCollection<? extends E> c)
boolean
AbstractTxnCollection. addAll(Txn tx, TxnCollection<? extends E> c)
-