T
- Type of object stored in list.public class ProxyObservableList<T>
extends javafx.collections.ObservableListBase<T>
Modifier and Type | Class and Description |
---|---|
static class |
ProxyObservableList.Exposed<T>
Exposes getDelegate() and
delegateProperty().
|
static class |
ProxyObservableList.Propertied<T>
Use covariant returns to assume ObjectProperty delegate instead of
ObservableValue.
|
modCount
Constructor and Description |
---|
ProxyObservableList() |
ProxyObservableList(javafx.collections.ObservableList<T> pDelegate) |
ProxyObservableList(javafx.beans.value.ObservableValue<javafx.collections.ObservableList<T>> pDelegateProperty) |
Modifier and Type | Method and Description |
---|---|
void |
add(int pIdx,
T pElement) |
boolean |
add(T pItem) |
boolean |
addAll(Collection<? extends T> pCollection) |
boolean |
addAll(int pIdx,
Collection<? extends T> pCollection) |
boolean |
addAll(T... pElements) |
void |
clear() |
boolean |
contains(Object pObj) |
boolean |
containsAll(Collection<?> pCollection) |
protected javafx.beans.value.ObservableValue<javafx.collections.ObservableList<T>> |
delegateProperty() |
boolean |
equals(Object pObj) |
T |
get(int pIdx) |
protected javafx.collections.ObservableList<T> |
getDelegate() |
int |
hashCode() |
int |
indexOf(Object pObj) |
boolean |
isEmpty() |
int |
lastIndexOf(Object pObj) |
T |
remove(int pIdx) |
void |
remove(int pFrom,
int pTo) |
boolean |
remove(Object pObj) |
boolean |
removeAll(Collection<?> pCollection) |
boolean |
removeAll(T... pElements) |
void |
replaceAll(UnaryOperator<T> pOperator) |
boolean |
retainAll(Collection<?> pCollection) |
boolean |
retainAll(T... pElements) |
T |
set(int pIdx,
T pElement) |
boolean |
setAll(Collection<? extends T> pCol) |
boolean |
setAll(T... pElements) |
int |
size() |
String |
toString() |
addListener, addListener, beginChange, endChange, fireChange, hasListeners, nextAdd, nextPermutation, nextRemove, nextRemove, nextReplace, nextSet, nextUpdate, removeListener, removeListener
iterator, listIterator, listIterator, removeRange, subList
toArray, toArray
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
iterator, listIterator, listIterator, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
public ProxyObservableList()
public ProxyObservableList(javafx.collections.ObservableList<T> pDelegate)
public ProxyObservableList(javafx.beans.value.ObservableValue<javafx.collections.ObservableList<T>> pDelegateProperty)
protected javafx.collections.ObservableList<T> getDelegate()
protected javafx.beans.value.ObservableValue<javafx.collections.ObservableList<T>> delegateProperty()
public T get(int pIdx)
public int size()
size
in interface Collection<T>
size
in interface List<T>
size
in class AbstractCollection<T>
public boolean isEmpty()
isEmpty
in interface Collection<T>
isEmpty
in interface List<T>
isEmpty
in class AbstractCollection<T>
public boolean contains(Object pObj)
contains
in interface Collection<T>
contains
in interface List<T>
contains
in class AbstractCollection<T>
public boolean add(T pItem)
add
in interface Collection<T>
add
in interface List<T>
add
in class AbstractList<T>
public void add(int pIdx, T pElement)
public T remove(int pIdx)
public boolean remove(Object pObj)
remove
in interface Collection<T>
remove
in interface List<T>
remove
in class AbstractCollection<T>
public void remove(int pFrom, int pTo)
public int indexOf(Object pObj)
public boolean equals(Object pObj)
equals
in interface Collection<T>
equals
in interface List<T>
equals
in class AbstractList<T>
public int hashCode()
hashCode
in interface Collection<T>
hashCode
in interface List<T>
hashCode
in class AbstractList<T>
public boolean containsAll(Collection<?> pCollection)
containsAll
in interface Collection<T>
containsAll
in interface List<T>
containsAll
in class AbstractCollection<T>
public String toString()
toString
in class AbstractCollection<T>
public void replaceAll(UnaryOperator<T> pOperator)
public void clear()
clear
in interface Collection<T>
clear
in interface List<T>
clear
in class AbstractList<T>
public int lastIndexOf(Object pObj)
lastIndexOf
in interface List<T>
lastIndexOf
in class AbstractList<T>
public boolean addAll(int pIdx, Collection<? extends T> pCollection)
public boolean addAll(Collection<? extends T> pCollection)
addAll
in interface Collection<T>
addAll
in interface List<T>
addAll
in class AbstractCollection<T>
public boolean addAll(T... pElements)
public boolean setAll(T... pElements)
public boolean setAll(Collection<? extends T> pCol)
public boolean removeAll(Collection<?> pCollection)
removeAll
in interface Collection<T>
removeAll
in interface List<T>
removeAll
in class AbstractCollection<T>
public boolean removeAll(T... pElements)
public boolean retainAll(Collection<?> pCollection)
retainAll
in interface Collection<T>
retainAll
in interface List<T>
retainAll
in class AbstractCollection<T>
Copyright © 2023. All rights reserved.