Interface ConfigurationFactory<T>

Type Parameters:
T - the type of the configuration objects to produce
All Known Implementing Classes:
BaseConfigurationFactory, JsonConfigurationFactory, YamlConfigurationFactory

public interface ConfigurationFactory<T>
A generic interface for constructing a configuration object.
  • Method Summary

    Modifier and Type
    Method
    Description
    Loads, parses, binds, and validates a configuration object from an empty document.
    Loads, parses, binds, and validates a configuration object.
    default T
    build(File file)
    Loads, parses, binds, and validates a configuration object from a file.