Interface TypeConverter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object backConvert​(java.lang.Object result)
      Converts the given object into its generic representation.
      java.lang.Object convert​(java.lang.Object pObject)
      Converts the given object into the required representation.
      boolean isConvertable​(java.lang.Object pObject)
      Returns, whether the TypeConverter is ready to handle the given object.
    • Method Detail

      • isConvertable

        boolean isConvertable​(java.lang.Object pObject)
        Returns, whether the TypeConverter is ready to handle the given object. If so, convert(Object) may be called.
      • convert

        java.lang.Object convert​(java.lang.Object pObject)
        Converts the given object into the required representation.
      • backConvert

        java.lang.Object backConvert​(java.lang.Object result)
        Converts the given object into its generic representation.