Interface OutputConverter<T>

  • Type Parameters:
    T - the type of the object that is written by this OutputConverter
    All Known Implementing Classes:
    JsonOutputConverter, OutputStreamOutputConverter, StringOutputConverter, VoidOutputConverter

    public interface OutputConverter<T>
    An OutputConverter is a Converter that is able to write an object to a certain output source. The actual source is not defined on this interface and is thus completely left open for the implementations to define.
    • Method Detail

      • write

        void write​(T t)
        Writes an object to a certain output source.
        Parameters:
        t - The object to write to a certain output source.