Interface LocalDateTimeExpression
-
- All Superinterfaces:
ComparableExpression<LocalDateTime>
,EventSource<ObservableEvent<LocalDateTime>,ObservableEventListener<? super LocalDateTime>>
,Expression<LocalDateTime>
,ObservableLocalDateTimeValue
,ObservableObjectValue<LocalDateTime>
,ObservableTemporalValue<LocalDateTime>
,ObservableValue<LocalDateTime>
,ReadableLocalDateTimeValue
,ReadableObjectValue<LocalDateTime>
,ReadableSimpleValue<LocalDateTime>
,ReadableTemporalValue<LocalDateTime>
,ReadableTypedObjectValue<LocalDateTime>
,ReadableTypedValue<LocalDateTime>
,ReadableValue<LocalDateTime>
,Supplier<LocalDateTime>
,TemporalExpression<LocalDateTime>
- All Known Subinterfaces:
ReadableLocalDateTimeProperty
,WritableLocalDateTimeProperty
- All Known Implementing Classes:
LocalDateTimeBinding
,LocalDateTimeProperty
public interface LocalDateTimeExpression extends ObservableLocalDateTimeValue, TemporalExpression<LocalDateTime>
- Since:
- 1.0.0
-
-
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.localdatetime.ReadableLocalDateTimeValue
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<LocalDateTime>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the future.
-
inPast
default BooleanBinding inPast()
- Specified by:
inPast
in interfaceTemporalExpression<LocalDateTime>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the past.
-
-