Interface RawProvider


public interface RawProvider
The raw configuration provider. This is usually some kind of configuration format library like SnakeYAML.
  • Method Summary

    Modifier and Type
    Method
    Description
    compose(Reader reader)
    Parses the input from the reader into a node tree to be loaded.
    void
    write(Node node, Writer writer)
    Attempts to serialize the given node tree to the writer.
  • Method Details

    • write

      void write(Node node, Writer writer)
      Attempts to serialize the given node tree to the writer.
      Parameters:
      node - The node.
      writer - The writer.
    • compose

      Node compose(Reader reader)
      Parses the input from the reader into a node tree to be loaded.
      Parameters:
      reader - The reader.
      Returns:
      The node.