Uses of Interface
javafx.collections.ObservableMap
-
Packages that use ObservableMap 软件包 描述 javafx.animation 提供一组类,便于使用基于过渡的动画。javafx.beans.binding javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,以及一些实现。javafx.beans.value 包javafx.beans.value
包含两个基本接口ObservableValue
和WritableValue
及其所有子接口。javafx.collections 包含基本的JavaFX集合和集合实用程序javafx.fxml 包含用于从标记加载对象层次结构的类。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.media 提供用于将音频和视频集成到Java FX应用程序中的一组类。javafx.stage 提供JavaFX内容的顶级容器类。 -
-
Uses of ObservableMap in javafx.animation
Methods in javafx.animation that return ObservableMap Modifier and Type 方法 描述 ObservableMap<String,Duration>
Animation. getCuePoints()
提示点可用于标记Animation
重要位置。 -
Uses of ObservableMap in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableMap Modifier and Type Class 描述 class
MapBinding<K,V>
提供实现ObservableMap
的Binding
所需的大部分功能的基类。class
MapExpression<K,V>
MapExpression
是一个ObservableMapValue
加上额外的便利方法,以流利的风格生成绑定。Methods in javafx.beans.binding that return ObservableMap Modifier and Type 方法 描述 protected abstract ObservableMap<K,V>
MapBinding. computeValue()
计算此绑定的当前值。ObservableMap<K,V>
MapBinding. get()
返回MapBinding.computeValue()
的结果。ObservableMap<K,V>
MapExpression. getValue()
Method parameters in javafx.beans.binding with type arguments of type ObservableMap Modifier and Type 方法 描述 void
MapBinding. addListener(ChangeListener<? super ObservableMap<K,V>> listener)
void
MapBinding. removeListener(ChangeListener<? super ObservableMap<K,V>> listener)
-
Uses of ObservableMap in javafx.beans.property
Classes in javafx.beans.property that implement ObservableMap Modifier and Type Class 描述 class
MapProperty<K,V>
这个类提供了一个Property
的全面实现,包装了一个ObservableMap
。class
MapPropertyBase<K,V>
MapPropertyBase
类是包装一个ObservableMap
的属性的基类。class
ReadOnlyMapProperty<K,V>
超类为所有只读属性包装一个ObservableMap
。class
ReadOnlyMapPropertyBase<K,V>
所有只读属性的基类包装一个ObservableMap
。class
ReadOnlyMapWrapper<K,V>
该类提供了一个方便的类来定义只读属性。class
SimpleMapProperty<K,V>
这个类提供了一个包含ObservableMap的ObservableMap
的完整实现。Methods in javafx.beans.property that return ObservableMap Modifier and Type 方法 描述 ObservableMap<K,V>
MapPropertyBase. get()
Methods in javafx.beans.property with parameters of type ObservableMap Modifier and Type 方法 描述 void
ReadOnlyMapProperty. bindContent(ObservableMap<K,V> map)
创建ObservableMap
之间的内容绑定,即包含在这个ReadOnlyMapProperty
,另一个是ObservableMap
。void
ReadOnlyMapProperty. bindContentBidirectional(ObservableMap<K,V> map)
创建一个双向内容绑定的ObservableMap
,即包装在这个ReadOnlyMapProperty
和另一个ObservableMap
。void
MapPropertyBase. set(ObservableMap<K,V> newValue)
void
MapProperty. setValue(ObservableMap<K,V> v)
设置包装的值。Method parameters in javafx.beans.property with type arguments of type ObservableMap Modifier and Type 方法 描述 void
MapPropertyBase. addListener(ChangeListener<? super ObservableMap<K,V>> listener)
void
ReadOnlyMapPropertyBase. addListener(ChangeListener<? super ObservableMap<K,V>> listener)
void
MapPropertyBase. bind(ObservableValue<? extends ObservableMap<K,V>> newObservable)
void
MapProperty. bindBidirectional(Property<ObservableMap<K,V>> other)
在这个Property
之间创建一个双向绑定。void
MapPropertyBase. removeListener(ChangeListener<? super ObservableMap<K,V>> listener)
void
ReadOnlyMapPropertyBase. removeListener(ChangeListener<? super ObservableMap<K,V>> listener)
void
MapProperty. unbindBidirectional(Property<ObservableMap<K,V>> other)
删除此Property
和另一个之间的双向绑定。Constructors in javafx.beans.property with parameters of type ObservableMap Constructor 描述 MapPropertyBase(ObservableMap<K,V> initialValue)
MapPropertyBase
的构造MapPropertyBase
。ReadOnlyMapWrapper(Object bean, String name, ObservableMap<K,V> initialValue)
构造函数为ReadOnlyMapWrapper
ReadOnlyMapWrapper(ObservableMap<K,V> initialValue)
构造函数为ReadOnlyMapWrapper
SimpleMapProperty(Object bean, String name, ObservableMap<K,V> initialValue)
构造函数为SimpleMapProperty
SimpleMapProperty(ObservableMap<K,V> initialValue)
构造函数为SimpleMapProperty
-
Uses of ObservableMap in javafx.beans.value
Subinterfaces of ObservableMap in javafx.beans.value Modifier and Type 接口 描述 interface
ObservableMapValue<K,V>
一个可观察的参考ObservableMap
。interface
WritableMapValue<K,V>
一个可写参考的一个ObservableMap
。 -
Uses of ObservableMap in javafx.collections
Methods in javafx.collections that return ObservableMap Modifier and Type 方法 描述 static <K,V> ObservableMap<K,V>
FXCollections. checkedObservableMap(ObservableMap<K,V> map, Class<K> keyType, Class<V> valueType)
在提供的可观察地图的顶部创建并返回类型安全的包装器。static <K,V> ObservableMap<K,V>
FXCollections. emptyObservableMap()
创建和清空不可修改的可观测地图。ObservableMap<K,V>
MapChangeListener.Change. getMap()
与变化相关联的可观察的地图。static <K,V> ObservableMap<K,V>
FXCollections. observableHashMap()
创建一个由HashMap支持的新的可观察的地图。static <K,V> ObservableMap<K,V>
FXCollections. observableMap(Map<K,V> map)
构造由指定地图支持的ObservableMap。static <K,V> ObservableMap<K,V>
FXCollections. synchronizedObservableMap(ObservableMap<K,V> map)
在提供的可观察地图的顶部创建并返回同步的包装器。static <K,V> ObservableMap<K,V>
FXCollections. unmodifiableObservableMap(ObservableMap<K,V> map)
构造一个只读接口到指定的ObservableMap。Methods in javafx.collections with parameters of type ObservableMap Modifier and Type 方法 描述 static <K,V> ObservableMap<K,V>
FXCollections. checkedObservableMap(ObservableMap<K,V> map, Class<K> keyType, Class<V> valueType)
在提供的可观察地图的顶部创建并返回类型安全的包装器。static <K,V> ObservableMap<K,V>
FXCollections. synchronizedObservableMap(ObservableMap<K,V> map)
在提供的可观察地图的顶部创建并返回同步的包装器。static <K,V> ObservableMap<K,V>
FXCollections. unmodifiableObservableMap(ObservableMap<K,V> map)
构造一个只读接口到指定的ObservableMap。Constructors in javafx.collections with parameters of type ObservableMap Constructor 描述 Change(ObservableMap<K,V> map)
构造与地图关联的更改。 -
Uses of ObservableMap in javafx.fxml
Methods in javafx.fxml that return ObservableMap Modifier and Type 方法 描述 ObservableMap<String,Object>
FXMLLoader. getNamespace()
返回此装载器使用的命名空间。 -
Uses of ObservableMap in javafx.scene
Methods in javafx.scene that return ObservableMap Modifier and Type 方法 描述 ObservableMap<KeyCombination,Runnable>
Scene. getAccelerators()
获取此Scene
的加速器列表。ObservableMap<KeyCombination,ObservableList<Mnemonic>>
Scene. getMnemonics()
获取Scene
的助记符列表。ObservableMap<Object,Object>
Node. getProperties()
返回此节点上属性的可观察图,主要由应用程序开发人员使用。ObservableMap<Object,Object>
Scene. getProperties()
返回此节点上属性的可观察图,主要由应用程序开发人员使用。 -
Uses of ObservableMap in javafx.scene.control
Methods in javafx.scene.control that return ObservableMap Modifier and Type 方法 描述 ObservableMap<Object,Object>
MenuItem. getProperties()
返回此菜单项上可观察到的属性映射,主要由应用程序开发人员使用。ObservableMap<Object,Object>
Tab. getProperties()
返回此选项卡上属性的可观察图,主要由应用程序开发人员使用。ObservableMap<Object,Object>
TableColumnBase. getProperties()
返回此表列上属性的可观察图,主要由应用程序开发人员使用。ObservableMap<Object,Object>
Toggle. getProperties()
返回此切换上属性的可观察地图,主要由应用程序开发人员使用。ObservableMap<Object,Object>
ToggleGroup. getProperties()
返回此节点上属性的可观察图,主要由应用程序开发人员使用。 -
Uses of ObservableMap in javafx.scene.media
Methods in javafx.scene.media that return ObservableMap Modifier and Type 方法 描述 ObservableMap<String,Duration>
Media. getMarkers()
检索此Media
实例上定义的标记。ObservableMap<String,Object>
Media. getMetadata()
检索此媒体源中包含的元数据。 -
Uses of ObservableMap in javafx.stage
Methods in javafx.stage that return ObservableMap Modifier and Type 方法 描述 ObservableMap<Object,Object>
Window. getProperties()
返回此节点上属性的可观察图,主要由应用程序开发人员使用。
-