Interface LocalTimeExpression
-
- All Superinterfaces:
ComparableExpression<LocalTime>
,EventSource<ObservableEvent<LocalTime>,ObservableEventListener<? super LocalTime>>
,Expression<LocalTime>
,ObservableLocalTimeValue
,ObservableObjectValue<LocalTime>
,ObservableTemporalValue<LocalTime>
,ObservableValue<LocalTime>
,ReadableLocalTimeValue
,ReadableObjectValue<LocalTime>
,ReadableSimpleValue<LocalTime>
,ReadableTemporalValue<LocalTime>
,ReadableTypedObjectValue<LocalTime>
,ReadableTypedValue<LocalTime>
,ReadableValue<LocalTime>
,Supplier<LocalTime>
,TemporalExpression<LocalTime>
- All Known Subinterfaces:
ReadableLocalTimeProperty
,WritableLocalTimeProperty
- All Known Implementing Classes:
LocalTimeBinding
,LocalTimeProperty
public interface LocalTimeExpression extends ObservableLocalTimeValue, TemporalExpression<LocalTime>
- 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.localtime.ReadableLocalTimeValue
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<LocalTime>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the future.
-
inPast
default BooleanBinding inPast()
- Specified by:
inPast
in interfaceTemporalExpression<LocalTime>
- Returns:
- a new
BooleanBinding
that holdstrue
if thevalue
is in the past.
-
-