- 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<E>,ReadOnlyProperty<E>,ObservableListValue<E>,ObservableObjectValue<E>,ObservableValue<E>,WritableListValue<E>,WritableObjectValue<E>,WritableValue<E>,ObservableList<E>
- 直系の既知のサブクラス:
ReadOnlyListWrapper
public class SimpleListProperty<E> extends ListPropertyBase<E>
このクラスは、ObservableListをラップするPropertyの完全な実装を提供します。- 導入されたバージョン:
- JavaFX 2.1
- 関連項目:
ListPropertyBase
-
-
プロパティのサマリー
-
クラス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のコンストラクタ
-
メソッドのサマリー
すべてのメソッド インスタンス・メソッド 具象メソッド 修飾子と型 メソッド 説明 ObjectgetBean()このプロパティを含むObjectを返します。StringgetName()このプロパティの名前を返します。-
インタフェース 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, of, of, of, of, of, of, of, of, of, of, of, of, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
クラスjavafx.beans.binding.ListExpressionから継承されたメソッド
add, add, addAll, addAll, addAll, asString, clear, contains, containsAll, get, getSize, getValue, indexOf, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, lastIndexOf, listExpression, listIterator, listIterator, remove, remove, remove, removeAll, removeAll, retainAll, retainAll, set, setAll, setAll, size, subList, toArray, toArray, valueAt, valueAt
-
クラスjavafx.beans.property.ListPropertyから継承されたメソッド
bindBidirectional, setValue, unbindBidirectional
-
クラスjavafx.beans.property.ListPropertyBaseから継承されたメソッド
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbind
-
インタフェースjavafx.collections.ObservableListから継承されたメソッド
addAll, filtered, remove, removeAll, retainAll, setAll, setAll, sorted, sorted
-
インタフェースjavafx.beans.value.ObservableValueから継承されたメソッド
getValue
-
クラスjavafx.beans.property.ReadOnlyListPropertyから継承されたメソッド
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectional
-
インタフェースjavafx.beans.value.WritableValueから継承されたメソッド
getValue
-
-
-
-
コンストラクタの詳細
-
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- ラップされた値の初期値
-
-