Class ExpressionNodeConverter

  • All Implemented Interfaces:
    ConverterIfc

    public class ExpressionNodeConverter
    extends java.lang.Object
    implements ConverterIfc
    Converter to convert to the EXPRESSION_NODE data type.
    • Constructor Detail

      • ExpressionNodeConverter

        public ExpressionNodeConverter()
    • Method Detail

      • convert

        public EvaluationValue convert​(java.lang.Object object,
                                       ExpressionConfiguration configuration)
        Description copied from interface: ConverterIfc
        Called to convert a previously checked data type.
        Specified by:
        convert in interface ConverterIfc
        Parameters:
        object - The object to convert.
        configuration - The current expression configuration.
        Returns:
        The converted value.
      • canConvert

        public boolean canConvert​(java.lang.Object object)
        Description copied from interface: ConverterIfc
        Checks, if a given object can be converted by this converter.
        Specified by:
        canConvert in interface ConverterIfc
        Parameters:
        object - The object to convert.
        Returns:
        true if the object can be converted, false otherwise.