Interface LocalDateExpression
-
- All Superinterfaces:
ComparableExpression<LocalDate>
,EventSource<ObservableEvent<LocalDate>,ObservableEventListener<? super LocalDate>>
,Expression<LocalDate>
,ObservableLocalDateValue
,ObservableObjectValue<LocalDate>
,ObservableTemporalValue<LocalDate>
,ObservableValue<LocalDate>
,ReadableLocalDateValue
,ReadableObjectValue<LocalDate>
,ReadableSimpleValue<LocalDate>
,ReadableTemporalValue<LocalDate>
,ReadableTypedObjectValue<LocalDate>
,ReadableTypedValue<LocalDate>
,ReadableValue<LocalDate>
,Supplier<LocalDate>
,TemporalExpression<LocalDate>
- All Known Subinterfaces:
ReadableLocalDateProperty
,WritableLocalDateProperty
- All Known Implementing Classes:
LocalDateBinding
,LocalDateProperty
public interface LocalDateExpression extends ObservableLocalDateValue, TemporalExpression<LocalDate>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default BooleanBinding
inFuture()
default BooleanBinding
inPast()
-
Methods inherited from interface io.github.mmm.value.observable.comparable.ComparableExpression
greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo
-
Methods inherited from interface io.github.mmm.event.EventSource
addListener, addListener, addWeakListener, removeListener
-
Methods inherited from interface io.github.mmm.value.observable.Expression
asString, dispose, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull
-
Methods inherited from interface io.github.mmm.value.observable.ObservableValue
toString
-
Methods inherited from interface io.github.mmm.value.observable.temporal.localdate.ReadableLocalDateValue
getValueClass
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableObjectValue
getSafe, getValue
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
-
-
-
Method Detail
-
inFuture
default BooleanBinding inFuture()
- Specified by:
inFuture
in interfaceTemporalExpression<LocalDate>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the future.
-
inPast
default BooleanBinding inPast()
- Specified by:
inPast
in interfaceTemporalExpression<LocalDate>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the past.
-
-