Module io.github.mmm.property
Package io.github.mmm.property.temporal
Class DurationInSecondsProperty
- 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<N>
-
- io.github.mmm.property.number.NumberProperty<Long>
-
- io.github.mmm.property.number.longs.LongProperty
-
- io.github.mmm.property.temporal.DurationInSecondsProperty
-
- All Implemented Interfaces:
EventSource<ObservableEvent<Long>,ObservableEventListener<? super Long>>
,MarshallableObject
,Marshaller<Object>
,Marshalling<Object>
,MarshallingObject
,UnmarshallableObject
,Unmarshaller<Object>
,ReadableLongProperty
,WritableLongProperty
,ReadableNumberProperty<Long>
,WritableNumberProperty<Long>
,ReadableSimpleProperty<Long>
,WritableSimpleProperty<Long>
,ReadableProperty<Long>
,WritableProperty<Long>
,Validatable
,ComparableExpression<Long>
,Expression<Long>
,LongExpression
,ObservableLongValue
,ReadableLongValue
,WritableLongValue
,NumberExpression<Long>
,ObservableNumberValue<Long>
,ReadableNumberValue<Long>
,WritableNumberValue<Long>
,ObservableSimpleValue<Long>
,ReadableSimpleValue<Long>
,WritableSimpleValue<Long>
,ObservableValue<Long>
,WritableObservableValue<Long>
,PropertyPath<Long>
,ReadableTypedValue<Long>
,ReadableValue<Long>
,TypedPropertyPath<Long>
,WritableValue<Long>
,Cloneable
,Supplier<Long>
public class DurationInSecondsProperty extends LongProperty
ExtendsLongProperty
to store aDuration
in seconds.- Since:
- 1.0.0
- Author:
- hohwille
-
-
Field Summary
-
Fields inherited from interface io.github.mmm.property.WritableProperty
NO_PROPERTIES
-
-
Constructor Summary
Constructors Constructor Description DurationInSecondsProperty(String name)
The constructor.DurationInSecondsProperty(String name, PropertyMetadata<Long> metadata)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Duration
getValueAsDuration()
void
setValueAsDuration(Duration duration)
-
Methods inherited from class io.github.mmm.property.number.longs.LongProperty
doGet, doSet
-
Methods inherited from class io.github.mmm.property.number.NumberProperty
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.value.observable.number.longs.LongExpression
add, add, add, add, add, add, add, add, add, add, add, add, add, add, divide, divide, divide, divide, divide, divide, divide, divide, divide, divide, divide, divide, divide, divide, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract, subtract
-
Methods inherited from interface io.github.mmm.marshall.MarshallableObject
write, writeObject
-
Methods inherited from interface io.github.mmm.value.observable.number.NumberExpression
add, add, add, add, divide, divide, divide, divide, multiply, multiply, multiply, multiply, subtract, subtract, subtract, subtract
-
Methods inherited from interface io.github.mmm.value.observable.ObservableValue
toString
-
Methods inherited from interface io.github.mmm.value.observable.number.longs.ReadableLongValue
getSafe, getValue, getValueClass
-
Methods inherited from interface io.github.mmm.value.observable.number.ReadableNumberValue
byteValue, doubleValue, floatValue, intValue, longValue, shortValue
-
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.marshall.UnmarshallableObject
read, readObject
-
Methods inherited from interface io.github.mmm.validation.Validatable
validate
-
Methods inherited from interface io.github.mmm.value.observable.number.longs.WritableLongValue
parse, setValue, setValueAsNumber
-
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
-
-
-
-
Constructor Detail
-
DurationInSecondsProperty
public DurationInSecondsProperty(String name)
The constructor.- Parameters:
name
- thename
.
-
DurationInSecondsProperty
public DurationInSecondsProperty(String name, PropertyMetadata<Long> metadata)
The constructor.
-
-