Uses of Class
org.bytemechanics.config.manager.Config

  • Uses of Config in org.bytemechanics.config.manager

    Methods in org.bytemechanics.config.manager that return Config 
    Modifier and Type Method Description
    static Config Config.of​(java.lang.String _key, java.lang.String _value)
    Utility method to call constructor without new
    Methods in org.bytemechanics.config.manager that return types with arguments of type Config 
    Modifier and Type Method Description
    java.util.stream.Stream<Config> ConfigManager.read​(java.net.URI _location)
    Reads the uri location if possible returning a configuration stream
    java.util.stream.Stream<Config> ConfigManagerImpl.read​(java.net.URI _location)  
    protected java.util.stream.Stream<Config> ConfigManagerImpl.read​(java.net.URI _location, java.io.Reader _reader)
    Read configuration from the given _reader population as stream
    java.util.stream.Stream<Config> ConfigManager.stream()
    Reads all configured locations and return as stream
    java.util.stream.Stream<Config> ConfigManagerImpl.stream()  
    Methods in org.bytemechanics.config.manager with parameters of type Config 
    Modifier and Type Method Description
    int Config.compareTo​(Config _other)  
    Method parameters in org.bytemechanics.config.manager with type arguments of type Config 
    Modifier and Type Method Description
    void ConfigManager.write​(java.net.URI _location, java.util.stream.Stream<Config> _config)
    Utility method to update configuration locations when possible
    protected void ConfigManagerImpl.write​(java.net.URI _location, java.io.Writer _writer, java.util.stream.Stream<Config> _config)
    Write configuration to the given _writer from the given _config stream
    void ConfigManagerImpl.write​(java.net.URI _location, java.util.stream.Stream<Config> _config)  
  • Uses of Config in org.bytemechanics.config.manager.internal

    Methods in org.bytemechanics.config.manager.internal that return types with arguments of type Config 
    Modifier and Type Method Description
    java.util.stream.Stream<Config> ConfigParser.read​(java.io.Reader _reader)  
    static java.util.stream.Stream<Config> ConfigParserFactory.read​(java.io.Reader _reader, java.net.URI _location)  
    Method parameters in org.bytemechanics.config.manager.internal with type arguments of type Config 
    Modifier and Type Method Description
    void ConfigParser.write​(java.io.Writer _writer, java.util.stream.Stream<Config> _config)  
    static void ConfigParserFactory.write​(java.io.Writer _writer, java.net.URI _location, java.util.stream.Stream<Config> _config)