SynchronizedList
Complete API reference for SynchronizedList, including constructors, attributes, virtual attributes, and methods.
Package: JAVARuntime
Category: Lists
Component: no
public class SynchronizedList
Constructors
| Signature | Description |
|---|---|
SynchronizedList() | Executes SynchronizedList and returns after the underlying engine call finishes. |
SynchronizedList(List) | Creates a new instance of SynchronizedList. |
Methods
| Signature | Returns | Description |
|---|---|---|
size() | int | Executes size and returns after the underlying engine call finishes. |
isEmpty() | boolean | Returns whether empty is true. |
contains(Object) | boolean | Performs the contains operation using the provided parameters (o). |
iterator() | Iterator | Executes iterator and returns after the underlying engine call finishes. |
toArray() | Object[] | Executes toArray and returns after the underlying engine call finishes. |
add(Object) | boolean | Adds an item to the collection. |
remove(Object) | boolean | Removes an item from the collection. |
addAll(Collection) | boolean | Adds all to the collection. |
addAll(int, Collection) | boolean | Adds all to the collection. |
clear() | void | Clears or resets the object's state. |
equals(Object) | boolean | Compares this instance with another for equality/order. |
hashCode() | int | Returns whether code is true. |
get(int) | Object | Returns the current value. |
set(int, Object) | Object | Sets or updates the the value. |
add(int, Object) | void | Adds an item to the collection. |
remove(int) | Object | Removes an item from the collection. |
indexOf(Object) | int | Performs the indexOf operation using the provided parameters (o). |
lastIndexOf(Object) | int | Performs the lastIndexOf operation using the provided parameters (o). |
listIterator() | ListIterator | Executes listIterator and returns after the underlying engine call finishes. |
listIterator(int) | ListIterator | Performs the listIterator operation using the provided parameters (i). |
subList(int, int) | List | Performs the subList operation using the provided parameters (i, i1). |
retainAll(Collection) | boolean | Performs the retainAll operation using the provided parameters (collection). |
removeAll(Collection) | boolean | Removes all from the collection. |
containsAll(Collection) | boolean | Performs the containsAll operation using the provided parameters (collection). |
toArray(Object[]) | Object[] | Performs the toArray operation using the provided parameters (objects). |