Skip to main content

SynchronizedList

Complete API reference for SynchronizedList, including constructors, attributes, virtual attributes, and methods.

Package: JAVARuntime

Category: Lists

Component: no


public class SynchronizedList

Constructors

SignatureDescription
SynchronizedList()Executes SynchronizedList and returns after the underlying engine call finishes.
SynchronizedList(List)Creates a new instance of SynchronizedList.

Methods

SignatureReturnsDescription
size()intExecutes size and returns after the underlying engine call finishes.
isEmpty()booleanReturns whether empty is true.
contains(Object)booleanPerforms the contains operation using the provided parameters (o).
iterator()IteratorExecutes iterator and returns after the underlying engine call finishes.
toArray()Object[]Executes toArray and returns after the underlying engine call finishes.
add(Object)booleanAdds an item to the collection.
remove(Object)booleanRemoves an item from the collection.
addAll(Collection)booleanAdds all to the collection.
addAll(int, Collection)booleanAdds all to the collection.
clear()voidClears or resets the object's state.
equals(Object)booleanCompares this instance with another for equality/order.
hashCode()intReturns whether code is true.
get(int)ObjectReturns the current value.
set(int, Object)ObjectSets or updates the the value.
add(int, Object)voidAdds an item to the collection.
remove(int)ObjectRemoves an item from the collection.
indexOf(Object)intPerforms the indexOf operation using the provided parameters (o).
lastIndexOf(Object)intPerforms the lastIndexOf operation using the provided parameters (o).
listIterator()ListIteratorExecutes listIterator and returns after the underlying engine call finishes.
listIterator(int)ListIteratorPerforms the listIterator operation using the provided parameters (i).
subList(int, int)ListPerforms the subList operation using the provided parameters (i, i1).
retainAll(Collection)booleanPerforms the retainAll operation using the provided parameters (collection).
removeAll(Collection)booleanRemoves all from the collection.
containsAll(Collection)booleanPerforms the containsAll operation using the provided parameters (collection).
toArray(Object[])Object[]Performs the toArray operation using the provided parameters (objects).