Module io.github.mmm.property
Package io.github.mmm.property.object
Interface ReadableSimpleProperty<V>
-
- Type Parameters:
V
- type of thevalue
.
- All Superinterfaces:
EventSource<ObservableEvent<V>,ObservableEventListener<? super V>>
,Expression<V>
,MarshallableObject
,Marshaller<Object>
,ObservableSimpleValue<V>
,ObservableValue<V>
,PropertyPath<V>
,ReadableProperty<V>
,ReadableSimpleValue<V>
,ReadableTypedValue<V>
,ReadableValue<V>
,Supplier<V>
,TypedPropertyPath<V>
,Validatable
- All Known Subinterfaces:
ReadableBigDecimalProperty
,ReadableBigIntegerProperty
,ReadableByteProperty
,ReadableDoubleProperty
,ReadableFloatProperty
,ReadableIntegerProperty
,ReadableLongProperty
,ReadableNumberProperty<N>
,ReadableShortProperty
,WritableBigDecimalProperty
,WritableBigIntegerProperty
,WritableByteProperty
,WritableDoubleProperty
,WritableFloatProperty
,WritableIntegerProperty
,WritableLongProperty
,WritableNumberProperty<N>
,WritableShortProperty
,WritableSimpleProperty<V>
- All Known Implementing Classes:
BigDecimalProperty
,BigIntegerProperty
,BooleanProperty
,ByteProperty
,DoubleProperty
,DurationInSecondsProperty
,FloatProperty
,IdProperty
,InstantProperty
,IntegerProperty
,LinkProperty
,LocalDateProperty
,LocalDateTimeProperty
,LocalTimeProperty
,LongProperty
,NumberProperty
,ObjectProperty
,OffsetDateTimeProperty
,OffsetTimeProperty
,RangeProperty
,ShortProperty
,SimpleProperty
,StringListProperty
,StringProperty
,TemporalProperty
,ZonedDateTimeProperty
public interface ReadableSimpleProperty<V> extends ReadableProperty<V>, ObservableSimpleValue<V>, Expression<V>
ReadableProperty
for a simple datatype (and not acontainer property
).- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Type
getValueType()
-
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.property.ReadableProperty
getMetadata, getName, isReadOnly, isTransient, isValid
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableTypedValue
getValueClass
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get, getSafe
-
Methods inherited from interface io.github.mmm.validation.Validatable
validate
-
-
-
-
Method Detail
-
getValueType
default Type getValueType()
- Returns:
- the
Type
reflecting thevalue
. May be the same asReadableTypedValue.getValueClass()
or may contain additional generic type information. - See Also:
ReadableTypedValue.getValueClass()
-
-