Class ArrayConverter

  • All Implemented Interfaces:
    ConverterIfc

    public class ArrayConverter
    extends java.lang.Object
    implements ConverterIfc
    Converter to convert to the ARRAY data type.
    • Constructor Summary

      Constructors 
      Constructor Description
      ArrayConverter()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean canConvert​(java.lang.Object object)
      Checks, if a given object can be converted by this converter.
      EvaluationValue convert​(java.lang.Object object, ExpressionConfiguration configuration)
      Called to convert a previously checked data type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ArrayConverter

        public ArrayConverter()
    • 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.