public class EFactoryValueConverter extends java.lang.Object implements IValueConverter<java.lang.Object>
EFactory
of a EDataType
.IValueConverter.RuleSpecific
NO_OP_CONVERTER
Constructor and Description |
---|
EFactoryValueConverter(org.eclipse.emf.ecore.EDataType dataType) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString(java.lang.Object value)
Transforms the given value to a string that is conformant to the expected
terminal or data type rule.
|
java.lang.Object |
toValue(java.lang.String string,
INode node)
Creates a value from the given input.
|
public EFactoryValueConverter(org.eclipse.emf.ecore.EDataType dataType)
public java.lang.String toString(java.lang.Object value)
IValueConverter
toString
in interface IValueConverter<java.lang.Object>
value
- the to-be-transformed valuepublic java.lang.Object 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.
toValue
in interface IValueConverter<java.lang.Object>
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.