Interface InstantExpression
-
- All Superinterfaces:
ComparableExpression<Instant>
,EventSource<ObservableEvent<Instant>,ObservableEventListener<? super Instant>>
,Expression<Instant>
,ObservableInstantValue
,ObservableObjectValue<Instant>
,ObservableTemporalValue<Instant>
,ObservableValue<Instant>
,ReadableInstantValue
,ReadableObjectValue<Instant>
,ReadableSimpleValue<Instant>
,ReadableTemporalValue<Instant>
,ReadableTypedObjectValue<Instant>
,ReadableTypedValue<Instant>
,ReadableValue<Instant>
,Supplier<Instant>
,TemporalExpression<Instant>
- All Known Subinterfaces:
ReadableInstantProperty
,WritableInstantProperty
- All Known Implementing Classes:
InstantBinding
,InstantProperty
public interface InstantExpression extends ObservableInstantValue, TemporalExpression<Instant>
-
-
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.instant.ReadableInstantValue
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<Instant>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the future.
-
inPast
default BooleanBinding inPast()
- Specified by:
inPast
in interfaceTemporalExpression<Instant>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the past.
-
-