MapExpression

class MapExpression[K, V](val delegate: MapExpression[K, V])

Wraps a JavaFX MapExpression.

Wraps a JavaFX MapExpression.

Companion
object
class Object
trait Matchable
class Any
class MapBinding[K, V]
class MapProperty[K, V]
class ReadOnlyMapWrapper[K, V]

Value members

Concrete methods

def ++=(m: Map[K, V]): Unit
def +=(kv: (K, V)): V
def -=(key: Any): V

A boolean property that is true, if the the map is empty.

A boolean property that is true, if the the map is empty.

def get(key: K): Option[V]

Optionally returns the value associated with a key.

Optionally returns the value associated with a key.

Value Params
key

the key value

Returns

an option value containing the value associated with key in this $MAP, or None if none exists.

Creates a new BooleanBinding that holds true if this map is equal to another ObservableMap.

Creates a new BooleanBinding that holds true if this map is equal to another ObservableMap.

Value Params
other

the other ObservableMap

Returns

the new BooleanBinding

Creates a new BooleanBinding that holds true if this map is not equal to another ObservableMap.

Creates a new BooleanBinding that holds true if this map is not equal to another ObservableMap.

Value Params
other

the other ObservableMap

Returns

the new BooleanBinding

An integer property that represents the size of the map.

An integer property that represents the size of the map.

def values(): Iterable[V]

Concrete fields

val delegate: MapExpression[K, V]