Module io.github.mmm.property
Class ZonedDateTimeProperty
- java.lang.Object
-
- io.github.mmm.event.AbstractEventSource<ObservableEvent<V>,ObservableEventListener<? super V>>
-
- io.github.mmm.value.observable.AbstractObservableValue<V>
-
- io.github.mmm.value.observable.AbstractWritableObservableValue<V>
-
- io.github.mmm.property.Property<V>
-
- io.github.mmm.property.object.SimpleProperty<V>
-
- io.github.mmm.property.temporal.TemporalProperty<ZonedDateTime>
-
- io.github.mmm.property.temporal.zoneddatetime.ZonedDateTimeProperty
-
- All Implemented Interfaces:
EventSource<ObservableEvent<ZonedDateTime>,ObservableEventListener<? super ZonedDateTime>>
,MarshallableObject
,Marshaller<Object>
,Marshalling<Object>
,MarshallingObject
,UnmarshallableObject
,Unmarshaller<Object>
,ReadableSimpleProperty<ZonedDateTime>
,WritableSimpleProperty<ZonedDateTime>
,ReadableProperty<ZonedDateTime>
,ReadableZonedDateTimeProperty
,WritableZonedDateTimeProperty
,WritableProperty<ZonedDateTime>
,Validatable
,ComparableExpression<ZonedDateTime>
,Expression<ZonedDateTime>
,ObservableObjectValue<ZonedDateTime>
,ObservableSimpleValue<ZonedDateTime>
,ReadableObjectValue<ZonedDateTime>
,ReadableSimpleValue<ZonedDateTime>
,ReadableTypedObjectValue<ZonedDateTime>
,WritableObjectValue<ZonedDateTime>
,WritableSimpleValue<ZonedDateTime>
,ObservableValue<ZonedDateTime>
,ObservableTemporalValue<ZonedDateTime>
,ReadableTemporalValue<ZonedDateTime>
,TemporalExpression<ZonedDateTime>
,WritableTemporalValue<ZonedDateTime>
,ObservableZonedDateTimeValue
,ReadableZonedDateTimeValue
,WritableZonedDateTimeValue
,ZonedDateTimeExpression
,WritableObservableValue<ZonedDateTime>
,PropertyPath<ZonedDateTime>
,ReadableTypedValue<ZonedDateTime>
,ReadableValue<ZonedDateTime>
,TypedPropertyPath<ZonedDateTime>
,WritableValue<ZonedDateTime>
,Cloneable
,Supplier<ZonedDateTime>
public class ZonedDateTimeProperty extends TemporalProperty<ZonedDateTime> implements WritableZonedDateTimeProperty
This is the implementation ofWritableZonedDateTimeProperty
.- Since:
- 1.0.0
-
-
Field Summary
-
Fields inherited from interface io.github.mmm.property.WritableProperty
NO_PROPERTIES
-
-
Constructor Summary
Constructors Constructor Description ZonedDateTimeProperty(String name)
The constructor.ZonedDateTimeProperty(String name, PropertyMetadata<ZonedDateTime> metadata)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ZonedDateTime
doGet()
protected void
doSet(ZonedDateTime newValue)
-
Methods inherited from class io.github.mmm.property.temporal.TemporalProperty
read, write
-
Methods inherited from class io.github.mmm.property.Property
clearValidationResult, clone, copy, doValidate, doValidate, equals, get, getMetadata, getName, getReadOnly, hashCode, isReadOnly, isValid, isValueMutable, readObject, requireWritable, setWithChange, toString, validate, writeObject
-
Methods inherited from class io.github.mmm.value.observable.AbstractWritableObservableValue
bindInternal, bindOneWay, bindTwoWay, isBoundOneWay, isValueEqual, set, unbindOneWay, unbindTwoWay
-
Methods inherited from class io.github.mmm.value.observable.AbstractObservableValue
addListener, fireChange, fireEvent, fireEvent, fireEventFor, fireEventFor, fireEventWithOldValue, hasChangeAwareListeners, invalidate, removeListener, toString
-
Methods inherited from class io.github.mmm.event.AbstractEventSource
getEventAdapter, hasListeners
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
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.marshall.MarshallableObject
write, writeObject
-
Methods inherited from interface io.github.mmm.value.observable.ObservableValue
toString
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableObjectValue
getSafe, getValue
-
Methods inherited from interface io.github.mmm.property.ReadableProperty
getMetadata, getName, isReadOnly, isTransient, isValid
-
Methods inherited from interface io.github.mmm.property.object.ReadableSimpleProperty
getValueType
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
Methods inherited from interface io.github.mmm.property.temporal.zoneddatetime.ReadableZonedDateTimeProperty
getValueClass
-
Methods inherited from interface io.github.mmm.marshall.UnmarshallableObject
read, readObject
-
Methods inherited from interface io.github.mmm.validation.Validatable
validate
-
Methods inherited from interface io.github.mmm.value.observable.object.WritableObjectValue
setValue
-
Methods inherited from interface io.github.mmm.value.observable.WritableObservableValue
bindOneWay, bindTwoWay, isBoundOneWay, unbindOneWay, unbindTwoWay
-
Methods inherited from interface io.github.mmm.property.WritableProperty
copy, getReadOnly
-
Methods inherited from interface io.github.mmm.value.observable.object.WritableSimpleValue
setAsString
-
Methods inherited from interface io.github.mmm.value.WritableValue
set
-
Methods inherited from interface io.github.mmm.value.observable.temporal.zoneddatetime.WritableZonedDateTimeValue
parse
-
Methods inherited from interface io.github.mmm.value.observable.temporal.zoneddatetime.ZonedDateTimeExpression
inFuture, inPast
-
-
-
-
Constructor Detail
-
ZonedDateTimeProperty
public ZonedDateTimeProperty(String name)
The constructor.- Parameters:
name
- thename
.
-
ZonedDateTimeProperty
public ZonedDateTimeProperty(String name, PropertyMetadata<ZonedDateTime> metadata)
The constructor.
-
-
Method Detail
-
doGet
protected ZonedDateTime doGet()
- Specified by:
doGet
in classAbstractWritableObservableValue<ZonedDateTime>
- Returns:
- the internal
value
.
-
doSet
protected void doSet(ZonedDateTime newValue)
- Specified by:
doSet
in classAbstractWritableObservableValue<ZonedDateTime>
- Parameters:
newValue
- the newvalue
to set.- See Also:
AbstractWritableObservableValue.set(Object)
-
-