Uses of Interface
net.obvj.confectory.source.Source
-
Packages that use Source Package Description net.obvj.confectory The main package.net.obvj.confectory.source This package groups theSourceinterface and its implementations, as well as auxiliary classes. -
-
Uses of Source in net.obvj.confectory
Methods in net.obvj.confectory that return Source Modifier and Type Method Description Source<T>Configuration. getSource()Source<T>ConfigurationBuilder. getSource()Source<T>ConfigurationMetadataRetriever. getSource()Returns theSourceobject associated with thisConfiguration.Methods in net.obvj.confectory with parameters of type Source Modifier and Type Method Description ConfigurationBuilder<T>ConfigurationBuilder. source(Source<T> source)Defines theSourceof the newConfiguration. -
Uses of Source in net.obvj.confectory.source
Classes in net.obvj.confectory.source that implement Source Modifier and Type Class Description classAbstractSource<T>An abstract configuration source, with common infrastructure.classClasspathFileSource<T>A specialized configuration source implementation for loading a local file resource from the classpath.classDummySource<T>A dummySourcefor internal purposes.classDynamicSource<T>A dynamicSourceimplementation which applies a different loading strategy contingent on the path contents.classFileSource<T>A specialized configuration source implementation for loading a local file from the file system.classStringSource<T>A specializedSourcethat loads the contents of aString.classURLSource<T>A specialized configuration source implementation that loads contents from a URL, that can be a local file or a Web resource.Methods in net.obvj.confectory.source that return Source Modifier and Type Method Description static <T> Source<T>SourceFactory. classpathFileSource(String path)Creates a newClasspathFileSourcefor loading a local file resource from the Java classpath.static <T> Source<T>SourceFactory. dynamicSource(String path)Creates a newDynamicSource.static <T> Source<T>SourceFactory. fileSource(String path)Creates a newFileSourcefor loading a local file from the file system.static <T> Source<T>SourceFactory. stringSource(String string)Creates a newStringSourcefor loading contents of aString.static <T> Source<T>SourceFactory. urlSource(String url)Creates a newURLSourcefor loading contents of a URL.
-