ValueType - The type of the entity value.public interface EntityConverter<ValueType>
Entity values to instances of their respective ValueType and back to String representations.| Modifier and Type | Method and Description |
|---|---|
ValueType |
value(java.lang.String valueString)
Parses the given string representation of a value into an instance of type
ValueType. |
java.lang.String |
valueString(ValueType value)
Renders the given entity value into its string representation.
|
ValueType value(java.lang.String valueString)
ValueType.valueString - The string representation of the value.java.lang.String valueString(ValueType value)
value - The value.