Interface EntityConverter<ValueType>
- Type Parameters:
ValueType- The type of the entity value.
public interface EntityConverter<ValueType>
Helper to convert
Entity values to instances of their respective ValueType and back to String representations.-
Method Summary
-
Method Details
-
value
Parses the given string representation of a value into an instance of typeValueType.- Parameters:
valueString- The string representation of the value.- Returns:
- The value as an object.
-
valueString
Renders the given entity value into its string representation.- Parameters:
value- The value.- Returns:
- The string representation of the value.
-