Uses of Class
cloud.opencode.base.io.source.CharSource
Packages that use CharSource
-
Uses of CharSource in cloud.opencode.base.io.source
Methods in cloud.opencode.base.io.source that return CharSourceModifier and TypeMethodDescriptionByteSource.asCharSource()Returns a view of the contents as a CharSource with UTF-8 charset.ByteSource.asCharSource(Charset charset) Returns a view of the contents as a CharSource with the given charset.static CharSourceCharSource.concat(CharSource... sources) Returns a concatenated CharSource.static CharSourceCharSource.concat(Iterable<? extends CharSource> sources) Returns a concatenated CharSource.static CharSourceCharSource.empty()Creates an empty CharSource.static CharSourceCreates a CharSource from a file path with UTF-8 encoding.static CharSourceCreates a CharSource from a file path.static CharSourceCharSource.fromResource(String resourcePath) Creates a CharSource from a classpath resource with UTF-8 encoding.static CharSourceCharSource.fromResource(String resourcePath, Charset charset) Creates a CharSource from a classpath resource.static CharSourceCharSource.fromResource(String resourcePath, Charset charset, ClassLoader classLoader) Creates a CharSource from a classpath resource.static CharSourceCreates a CharSource from a URL with UTF-8 encoding.static CharSourceCreates a CharSource from a URL.static CharSourceCharSource.wrap(CharSequence string) Creates a CharSource from a string.Methods in cloud.opencode.base.io.source with parameters of type CharSourceModifier and TypeMethodDescriptionstatic CharSourceCharSource.concat(CharSource... sources) Returns a concatenated CharSource.booleanCharSource.contentEquals(CharSource other) Checks if this source has the same content as another.Method parameters in cloud.opencode.base.io.source with type arguments of type CharSourceModifier and TypeMethodDescriptionstatic CharSourceCharSource.concat(Iterable<? extends CharSource> sources) Returns a concatenated CharSource.