public abstract class AbstractNullSafeConverter<T> extends AbstractValueConverter<T>
IValueConverter.RuleSpecific
NO_OP_CONVERTER
Constructor and Description |
---|
AbstractNullSafeConverter() |
Modifier and Type | Method and Description |
---|---|
protected abstract java.lang.String |
internalToString(T value) |
protected abstract T |
internalToValue(java.lang.String string,
INode node) |
java.lang.String |
toString(T value)
Transforms the given value to a string that is conformant to the expected
terminal or data type rule.
|
T |
toValue(java.lang.String string,
INode node)
Creates a value from the given input.
|
public java.lang.String toString(T value)
IValueConverter
value
- the to-be-transformed valueprotected abstract java.lang.String internalToString(T value)
public T toValue(java.lang.String string, INode node) throws ValueConverterException
IValueConverter
Creates a value from the given input. The input is conformant to a data type or terminal rule.
The given string
or node
may be null but not both of them.
string
- the string that was inferred from the node. Usually the node's text
but may be reduced to the parts of the node that are not
hidden
.node
- the parsed node including hidden parts.null
.ValueConverterException
- indicates that the string or node did not fulfil
the expected format.protected abstract T internalToValue(java.lang.String string, INode node) throws ValueConverterException
ValueConverterException