- java.lang.Object
-
- javafx.beans.binding.ListExpression<E>
-
- javafx.beans.property.ReadOnlyListProperty<E>
-
- javafx.beans.property.ListProperty<E>
-
- javafx.beans.property.ListPropertyBase<E>
-
- javafx.beans.property.SimpleListProperty<E>
-
- 型パラメータ:
E-List要素の型
- すべての実装されたインタフェース:
Iterable<E>,Collection<E>,List<E>,Observable,Property<ObservableList<E>>,ReadOnlyProperty<ObservableList<E>>,ObservableListValue<E>,ObservableObjectValue<ObservableList<E>>,ObservableValue<ObservableList<E>>,WritableListValue<E>,WritableObjectValue<ObservableList<E>>,WritableValue<ObservableList<E>>,ObservableList<E>
- 直系の既知のサブクラス:
ReadOnlyListWrapper
public class SimpleListProperty<E> extends ListPropertyBase<E>
このクラスは、ObservableListをラップするPropertyの完全な実装を提供します。- 導入されたバージョン:
- JavaFX 2.1
- 関連項目:
ListPropertyBase
-
-
プロパティのサマリー
-
クラス javafx.beans.binding.ListExpressionで宣言されたプロパティ
empty, size
-
クラス javafx.beans.property.ListPropertyBaseで宣言されたプロパティ
empty, size
-
-
コンストラクタのサマリー
コンストラクタ コンストラクタ 説明 SimpleListProperty()SimpleListPropertyのコンストラクタSimpleListProperty(Object bean, String name)SimpleListPropertyのコンストラクタSimpleListProperty(Object bean, String name, ObservableList<E> initialValue)SimpleListPropertyのコンストラクタSimpleListProperty(ObservableList<E> initialValue)SimpleListPropertyのコンストラクタ
-
メソッドのサマリー
-
インタフェース java.util.Collectionで宣言されたメソッド
parallelStream, removeIf, stream
-
インタフェース java.util.Listで宣言されたメソッド
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
クラス javafx.beans.binding.ListExpressionで宣言されたメソッド
asString, emptyProperty, getSize, isEqualTo, isNotEqualTo, isNotNull, isNull, listExpression, sizeProperty, valueAt, valueAt
-
クラス javafx.beans.property.ListPropertyBaseで宣言されたメソッド
fireValueChangedEvent, fireValueChangedEvent, invalidated, toString
-
インタフェース javafx.beans.Observableで宣言されたメソッド
addListener、removeListener
-
インタフェース javafx.collections.ObservableListで宣言されたメソッド
addAll, addListener, filtered, remove, removeAll, removeListener, retainAll, setAll, setAll, sorted, sorted
-
インタフェース javafx.beans.value.ObservableObjectValueで宣言されたメソッド
get
-
インタフェース javafx.beans.value.ObservableValueで宣言されたメソッド
addListener、getValue、removeListener
-
インタフェース javafx.beans.property.Propertyで宣言されたメソッド
bind, bindBidirectional, isBound, unbind, unbindBidirectional
-
クラス javafx.beans.property.ReadOnlyListPropertyで宣言されたメソッド
bindContent, bindContentBidirectional, unbindContent, unbindContentBidirectional
-
インタフェース javafx.beans.property.ReadOnlyPropertyで宣言されたメソッド
getBean, getName
-
インタフェース javafx.beans.value.WritableObjectValueで宣言されたメソッド
get, set
-
インタフェース javafx.beans.value.WritableValueで宣言されたメソッド
getValue, setValue
-
-
-
-
コンストラクタの詳細
-
SimpleListProperty
public SimpleListProperty()
SimpleListPropertyのコンストラクタ
-
SimpleListProperty
public SimpleListProperty(ObservableList<E> initialValue)
SimpleListPropertyのコンストラクタ- パラメータ:
initialValue- ラップされた値の初期値
-
SimpleListProperty
public SimpleListProperty(Object bean, String name)
SimpleListPropertyのコンストラクタ- パラメータ:
bean- このSetPropertyのBeanname- このSetPropertyの名前
-
SimpleListProperty
public SimpleListProperty(Object bean, String name, ObservableList<E> initialValue)
SimpleListPropertyのコンストラクタ- パラメータ:
bean- このListPropertyのBeanname- このListPropertyの名前initialValue- ラップされた値の初期値
-
-