Interface TypeConverter

    • Method Detail

      • canConvert

        boolean canConvert​(Object object,
                           Class toType)
        Returns true if it can convert the supplied object to the specified class.
        Parameters:
        object - object to test
        toType - target class
        Returns:
        boolean
      • convert

        Object convert​(Object object,
                       Class toType)
        Converts the supplied object to the specified type. Throws a runtime exception if the conversion is not possible.
        Parameters:
        object - object to convert
        toType - target class
        Returns:
        resulting Object