Package groovy.json

Interface JsonGenerator.Converter

    • Method Detail

      • handles

        boolean handles​(Class<?> type)
        Returns true if this converter can handle conversions of the given type.
        Parameters:
        type - the type of the object to convert
        Returns:
        true if this converter can successfully convert values of the given type, else false
      • convert

        Object convert​(Object value,
                       String key)
        Converts a given object.
        Parameters:
        value - the object to convert
        key - the key name for the value, may be null
        Returns:
        the converted object