public interface ReadableLocalDateProperty extends ReadableObjectProperty<LocalDate>
Modifier and Type | Field and Description |
---|---|
static GenericType<LocalDate> |
TYPE |
PROPERTY_TYPE
Modifier and Type | Method and Description |
---|---|
default GenericType<LocalDate> |
getType() |
default javafx.beans.binding.BooleanBinding |
isAfter(javafx.beans.value.ObservableObjectValue<LocalDate> other) |
default javafx.beans.binding.BooleanBinding |
isBefore(javafx.beans.value.ObservableObjectValue<LocalDate> other) |
get, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull
getBean, getName
addListener, getValue, removeListener
getValue
fromJson, toJson
static final GenericType<LocalDate> TYPE
getType()
default GenericType<LocalDate> getType()
getType
in interface ReadableProperty<LocalDate>
value
. Please note that the generic signature of this method
is returning the type GenericType
<? extends V> instead of GenericType
<V> because JavaFx is binding the type Number
for all numeric properties while e.g.
IntegerProperty
should be able to return GenericType
<Integer> what is compatible
with GenericType
<? extends Number>.default javafx.beans.binding.BooleanBinding isBefore(javafx.beans.value.ObservableObjectValue<LocalDate> other)
other
- the ObservableObjectValue
to compare.BooleanBinding
that holds true
if the value
of this property is
before
the value
of
another the given ObservableObjectValue
.default javafx.beans.binding.BooleanBinding isAfter(javafx.beans.value.ObservableObjectValue<LocalDate> other)
other
- the ObservableObjectValue
to compare.BooleanBinding
that holds true
if the value
of this property is
after
the value
of another
the given ObservableObjectValue
.Copyright © 2001–2016 mmm-Team. All rights reserved.