Interface ElementWriter<T>

Type Parameters:
T - the type of element to be written

public interface ElementWriter<T>
Writes an element (with or without an index) to the file system.
Author:
Owen Feehan
  • Method Summary

    Modifier and Type Method Description
    void write​(T element, OutputNameStyle outputNameStyle, ElementOutputter outputter)
    Writes a non-indexable output (an output that isn't part of a collection of other similar items).
    void writeWithIndex​(T element, String index, IndexableOutputNameStyle outputNameStyle, ElementOutputter outputter)
    Writes an indexable output (many outputs of the same type, uniquely identified by an index).