|
Spec-Zone .ru
спецификации, руководства, описания, API
|
private static class FXCollections.CheckedObservableList<T> extends com.sun.javafx.collections.BaseObservableList<T> implements ObservableList<T>
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
T element) |
boolean |
add(T e) |
boolean |
addAll(java.util.Collection<? extends T> coll) |
boolean |
addAll(int index,
java.util.Collection<? extends T> c) |
boolean |
addAll(T... elements)
A convenient method for var-arg adding of elements.
|
void |
clear() |
boolean |
contains(java.lang.Object o) |
boolean |
containsAll(java.util.Collection<?> coll) |
boolean |
equals(java.lang.Object o) |
T |
get(int index) |
int |
hashCode() |
int |
indexOf(java.lang.Object o) |
boolean |
isEmpty() |
java.util.Iterator<T> |
iterator() |
int |
lastIndexOf(java.lang.Object o) |
java.util.ListIterator<T> |
listIterator() |
java.util.ListIterator<T> |
listIterator(int index) |
T |
remove(int index) |
void |
remove(int from,
int to)
Basically a shortcut to sublist(from, to).clear()
As this is a common operation, ObservableList has this method for convenient usage.
|
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection<?> coll) |
boolean |
removeAll(T... elements)
A convenient method for var-arg usage of removaAll method.
|
boolean |
retainAll(java.util.Collection<?> coll) |
boolean |
retainAll(T... elements)
A convenient method for var-arg usage of retain method.
|
T |
set(int index,
T element) |
boolean |
setAll(java.util.Collection<? extends T> col)
Clears the ObservableList and add all elements from the collection.
|
boolean |
setAll(T... elements)
Clears the ObservableList and add all the elements passed as var-args.
|
int |
size() |
java.util.List<T> |
subList(int fromIndex,
int toIndex) |
java.lang.Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
java.lang.String |
toString() |
addListener, addListener, beginChange, callObservers, endChange, hasListChangeListener, nextAdd, nextPermutation, nextRemove, nextRemove, nextReplace, nextSet, nextUpdate, removeListener, removeListenerclone, finalize, getClass, notify, notifyAll, wait, wait, waitaddListener, removeListeneraddListener, removeListenerpublic int size()
public boolean isEmpty()
public boolean contains(java.lang.Object o)
public java.lang.Object[] toArray()
public <T> T[] toArray(T[] a)
public java.lang.String toString()
toString in class java.util.AbstractCollection<T>public boolean remove(java.lang.Object o)
public boolean containsAll(java.util.Collection<?> coll)
public boolean removeAll(java.util.Collection<?> coll)
public boolean retainAll(java.util.Collection<?> coll)
public boolean removeAll(T... elements)
ObservableListremoveAll in interface ObservableList<T>removeAll in class com.sun.javafx.collections.BaseObservableList<T>elements - the elements to be removedpublic boolean retainAll(T... elements)
ObservableListretainAll in interface ObservableList<T>retainAll in class com.sun.javafx.collections.BaseObservableList<T>elements - the elements to be retainedpublic void remove(int from,
int to)
ObservableListremove in interface ObservableList<T>remove in class com.sun.javafx.collections.BaseObservableList<T>from - the start of the range to remove (inclusive)to - the end of the range to remove (exclusive)public void clear()
public boolean equals(java.lang.Object o)
public int hashCode()
public T get(int index)
public T remove(int index)
public int indexOf(java.lang.Object o)
public int lastIndexOf(java.lang.Object o)
public void add(int index,
T element)
public boolean addAll(int index,
java.util.Collection<? extends T> c)
public boolean addAll(java.util.Collection<? extends T> coll)
public java.util.ListIterator<T> listIterator()
public java.util.ListIterator<T> listIterator(int index)
public java.util.Iterator<T> iterator()
public boolean add(T e)
public java.util.List<T> subList(int fromIndex, int toIndex)
public boolean addAll(T... elements)
ObservableListaddAll in interface ObservableList<T>addAll in class com.sun.javafx.collections.BaseObservableList<T>elements - the elements to addpublic boolean setAll(T... elements)
ObservableListsetAll in interface ObservableList<T>setAll in class com.sun.javafx.collections.BaseObservableList<T>elements - the elements to setpublic boolean setAll(java.util.Collection<? extends T> col)
ObservableListsetAll in interface ObservableList<T>setAll in class com.sun.javafx.collections.BaseObservableList<T>col - the collection with elements that will be added to this observableArrayListCopyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to .