- java.lang.Object
-
- javafx.beans.binding.ListExpression<E>
-
- Type Parameters:
E
- the type of theList
elements.
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,List<E>
,Observable
,ObservableListValue<E>
,ObservableObjectValue<ObservableList<E>>
,ObservableValue<ObservableList<E>>
,ObservableList<E>
- Direct Known Subclasses:
ListBinding
,ReadOnlyListProperty
public abstract class ListExpression<E> extends Object implements ObservableListValue<E>
ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.A concrete sub-class of
ListExpression
has to implement the methodObservableObjectValue.get()
, which provides the actual value of this expression.If the wrapped list of a
ListExpression
isnull
, all methods implementing theList
interface will behave as if they were applied to an immutable empty list.- Since:
- JavaFX 2.1
-
-
Property Summary
Properties Type Property Description abstract ReadOnlyBooleanProperty
empty
A boolean property that istrue
, if the list is empty.abstract ReadOnlyIntegerProperty
size
An integer property that represents the size of the list.
-
Constructor Summary
Constructors Constructor Description ListExpression()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
add(int i, E element)
boolean
add(E element)
boolean
addAll(int i, Collection<? extends E> elements)
boolean
addAll(E... elements)
A convenience method for var-arg addition of elements.boolean
addAll(Collection<? extends E> elements)
StringBinding
asString()
void
clear()
boolean
contains(Object obj)
boolean
containsAll(Collection<?> objects)
abstract ReadOnlyBooleanProperty
emptyProperty()
A boolean property that istrue
, if the list is empty.E
get(int i)
int
getSize()
The size of the listObservableList<E>
getValue()
Returns the current value of thisObservableValue
int
indexOf(Object obj)
boolean
isEmpty()
Gets the value of the property empty.BooleanBinding
isEqualTo(ObservableList<?> other)
BooleanBinding
isNotEqualTo(ObservableList<?> other)
BooleanBinding
isNotNull()
BooleanBinding
isNull()
Iterator<E>
iterator()
int
lastIndexOf(Object obj)
static <E> ListExpression<E>
listExpression(ObservableListValue<E> value)
Returns aListExpression
that wraps aObservableListValue
.ListIterator<E>
listIterator()
ListIterator<E>
listIterator(int i)
E
remove(int i)
void
remove(int from, int to)
A simplified way of callingsublist(from, to).clear()
.boolean
remove(Object obj)
boolean
removeAll(E... elements)
A convenience method for var-arg usage of theremoveAll
method.boolean
removeAll(Collection<?> objects)
boolean
retainAll(E... elements)
A convenience method for var-arg usage of theretainAll
method.boolean
retainAll(Collection<?> objects)
E
set(int i, E element)
boolean
setAll(E... elements)
Clears the ObservableList and adds all the elements passed as var-args.boolean
setAll(Collection<? extends E> elements)
Clears the ObservableList and adds all elements from the collection.int
size()
abstract ReadOnlyIntegerProperty
sizeProperty()
An integer property that represents the size of the list.List<E>
subList(int from, int to)
Object[]
toArray()
<T> T[]
toArray(T[] array)
ObjectBinding<E>
valueAt(int index)
Creates a newObjectBinding
that contains the element at the specified position.ObjectBinding<E>
valueAt(ObservableIntegerValue index)
Creates a newObjectBinding
that contains the element at the specified position.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.collections.ObservableList
addListener, filtered, removeListener, sorted, sorted
-
Methods inherited from interface javafx.beans.value.ObservableObjectValue
get
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, removeListener
-
-
-
-
Property Detail
-
size
public abstract ReadOnlyIntegerProperty sizeProperty
An integer property that represents the size of the list.- See Also:
getSize()
-
empty
public abstract ReadOnlyBooleanProperty emptyProperty
A boolean property that istrue
, if the list is empty.- See Also:
isEmpty()
-
-
Method Detail
-
getValue
public ObservableList<E> getValue()
Description copied from interface:ObservableValue
Returns the current value of thisObservableValue
- Specified by:
getValue
in interfaceObservableValue<E>
- Returns:
- The current value
-
listExpression
public static <E> ListExpression<E> listExpression(ObservableListValue<E> value)
Returns aListExpression
that wraps aObservableListValue
. If theObservableListValue
is already aListExpression
, it will be returned. Otherwise a newListBinding
is created that is bound to theObservableListValue
.- Type Parameters:
E
- the type of the wrappedList
- Parameters:
value
- The sourceObservableListValue
- Returns:
- A
ListExpression
that wraps theObservableListValue
if necessary - Throws:
NullPointerException
- ifvalue
isnull
-
getSize
public int getSize()
The size of the list- Returns:
- the size
-
sizeProperty
public abstract ReadOnlyIntegerProperty sizeProperty()
An integer property that represents the size of the list.- See Also:
getSize()
-
emptyProperty
public abstract ReadOnlyBooleanProperty emptyProperty()
A boolean property that istrue
, if the list is empty.- See Also:
isEmpty()
-
valueAt
public ObjectBinding<E> valueAt(int index)
Creates a newObjectBinding
that contains the element at the specified position. Ifindex
points behind the list, theObjectBinding
containsnull
.- Parameters:
index
- the index of the element- Returns:
- the
ObjectBinding
- Throws:
IllegalArgumentException
- ifindex < 0
-
valueAt
public ObjectBinding<E> valueAt(ObservableIntegerValue index)
Creates a newObjectBinding
that contains the element at the specified position. Ifindex
points outside of the list, theObjectBinding
containsnull
.- Parameters:
index
- the index of the element- Returns:
- the
ObjectBinding
- Throws:
NullPointerException
- ifindex
isnull
-
isEqualTo
public BooleanBinding isEqualTo(ObservableList<?> other)
- Parameters:
other
- the otherObservableList
- Returns:
- the new
BooleanBinding
- Throws:
NullPointerException
- ifother
isnull
-
isNotEqualTo
public BooleanBinding isNotEqualTo(ObservableList<?> other)
- Parameters:
other
- the otherObservableList
- Returns:
- the new
BooleanBinding
- Throws:
NullPointerException
- ifother
isnull
-
isNull
public BooleanBinding isNull()
- Returns:
- the new
BooleanBinding
-
isNotNull
public BooleanBinding isNotNull()
- Returns:
- the new
BooleanBinding
-
asString
public StringBinding asString()
Creates aStringBinding
that holds the value of theListExpression
turned into aString
. If the value of thisListExpression
changes, the value of theStringBinding
will be updated automatically.- Returns:
- the new
StringBinding
-
size
public int size()
-
isEmpty
public boolean isEmpty()
Gets the value of the property empty.
-
contains
public boolean contains(Object obj)
-
toArray
public Object[] toArray()
-
toArray
public <T> T[] toArray(T[] array)
-
add
public boolean add(E element)
-
remove
public boolean remove(Object obj)
-
containsAll
public boolean containsAll(Collection<?> objects)
- Specified by:
containsAll
in interfaceCollection<E>
- Specified by:
containsAll
in interfaceList<E>
-
addAll
public boolean addAll(Collection<? extends E> elements)
-
addAll
public boolean addAll(int i, Collection<? extends E> elements)
-
removeAll
public boolean removeAll(Collection<?> objects)
-
retainAll
public boolean retainAll(Collection<?> objects)
-
clear
public void clear()
-
lastIndexOf
public int lastIndexOf(Object obj)
- Specified by:
lastIndexOf
in interfaceList<E>
-
listIterator
public ListIterator<E> listIterator()
- Specified by:
listIterator
in interfaceList<E>
-
listIterator
public ListIterator<E> listIterator(int i)
- Specified by:
listIterator
in interfaceList<E>
-
addAll
public boolean addAll(E... elements)
Description copied from interface:ObservableList
A convenience method for var-arg addition of elements.- Specified by:
addAll
in interfaceObservableList<E>
- Parameters:
elements
- the elements to add- Returns:
- true (as specified by Collection.add(E))
-
setAll
public boolean setAll(E... elements)
Description copied from interface:ObservableList
Clears the ObservableList and adds all the elements passed as var-args.- Specified by:
setAll
in interfaceObservableList<E>
- Parameters:
elements
- the elements to set- Returns:
- true (as specified by Collection.add(E))
-
setAll
public boolean setAll(Collection<? extends E> elements)
Description copied from interface:ObservableList
Clears the ObservableList and adds all elements from the collection.- Specified by:
setAll
in interfaceObservableList<E>
- Parameters:
elements
- the collection with elements that will be added to this observableArrayList- Returns:
- true (as specified by Collection.add(E))
-
removeAll
public boolean removeAll(E... elements)
Description copied from interface:ObservableList
A convenience method for var-arg usage of theremoveAll
method.- Specified by:
removeAll
in interfaceObservableList<E>
- Parameters:
elements
- the elements to be removed- Returns:
- true if list changed as a result of this call
-
retainAll
public boolean retainAll(E... elements)
Description copied from interface:ObservableList
A convenience method for var-arg usage of theretainAll
method.- Specified by:
retainAll
in interfaceObservableList<E>
- Parameters:
elements
- the elements to be retained- Returns:
- true if list changed as a result of this call
-
remove
public void remove(int from, int to)
Description copied from interface:ObservableList
A simplified way of callingsublist(from, to).clear()
. As this is a common operation, ObservableList has this method for convenient usage.- Specified by:
remove
in interfaceObservableList<E>
- Parameters:
from
- the start of the range to remove (inclusive)to
- the end of the range to remove (exclusive)
-
-