Package org.openjdk.jmc.common.unit
Interface IPersister<T>
- All Superinterfaces:
IConstraint<T>
- All Known Implementing Classes:
KindOfQuantity
,LinearKindOfQuantity
,WrappingPersister
A specialized
constraint
that allows all instances of T
, but not
null
. As a result, interactiveFormat(Object)
and
persistableString(Object)
cannot throw QuantityConversionException
, but
NullPointerException
and in some cases IllegalArgumentException
. This interface
is typically implemented by content types
where every allowed value readily
can be represented with a human editable string.-
Method Summary
Modifier and TypeMethodDescriptioninteractiveFormat
(T value) An exact string representation taking locale and internationalization into account.persistableString
(T value) A string representation independent of locale or internationalization, that when parsed usingIConstraint.parsePersisted(String)
(on this instance) yields a result that isequal
to the givenvalue
.boolean
Fundamentally, check thatvalue
satisfies this constraint and throw an exception otherwise.Methods inherited from interface org.openjdk.jmc.common.unit.IConstraint
combine, parseInteractive, parsePersisted
-
Method Details
-
validate
Description copied from interface:IConstraint
Fundamentally, check thatvalue
satisfies this constraint and throw an exception otherwise. As long as the method returns normally,value
is a valid value, regardless of the return value. However, when wrapping a persister in a constraint, it is possible that the persister treats some magic values differently. If the constraint isn't aware of these magical values it should typically not try to validate them. This is signaled by the persister by returning true from this method.- Specified by:
validate
in interfaceIConstraint<T>
- Returns:
- true if this value is considered magical and further validation should be skipped,
false otherwise. Any return value mean that the
value
is valid.
-
persistableString
A string representation independent of locale or internationalization, that when parsed usingIConstraint.parsePersisted(String)
(on this instance) yields a result that isequal
to the givenvalue
. That is, the exact representation must be preserved.- Specified by:
persistableString
in interfaceIConstraint<T>
- Returns:
- a string representation independent of locale or internationalization.
- Throws:
NullPointerException
- ifvalue
is nullIllegalArgumentException
- if some type aspect ofvalue
prevents it from being valid
-
interactiveFormat
An exact string representation taking locale and internationalization into account. When parsed usingIConstraint.parseInteractive(String)
(on this instance) yields a result that isequal
to the givenvalue
. That is, the exact representation must be preserved.- Specified by:
interactiveFormat
in interfaceIConstraint<T>
- Returns:
- a string representation taking locale and internationalization into account.
- Throws:
NullPointerException
- ifvalue
is nullIllegalArgumentException
- if some type aspect ofvalue
prevents it from being valid
-