Uses of Class
org.jooq.Source
-
Packages that use Source Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.tools.jdbc Theorg.jooq.tools.jdbc
package contains compatibility classes to bridge between JDBC 4.0 and JDBC 4.1. -
-
Uses of Source in org.jooq
Methods in org.jooq that return Source Modifier and Type Method Description static Source
Source. of(byte[] bytes)
Create a source from binary data.static Source
Source. of(byte[] bytes, String charsetName)
Create a source from binary data using a specific character set.static Source
Source. of(byte[] bytes, Charset charset)
Create a source from binary data using a specific character set.static Source
Source. of(byte[] bytes, CharsetDecoder charsetDecoder)
Create a source from binary data using a specific character set.static Source
Source. of(File file)
Create a source from a file.static Source
Source. of(File file, String charsetName)
Create a source from a file using a specific character set.static Source
Source. of(File file, Charset charset)
Create a source from a file using a specific character set.static Source
Source. of(File file, CharsetDecoder charsetDecoder)
Create a source from a file using a specific character set.static Source
Source. of(InputStream inputStream)
Create a source from an input stream.static Source
Source. of(InputStream inputStream, String charsetName)
Create a source from an input stream using a specific character set.static Source
Source. of(InputStream inputStream, Charset charset)
Create a source from an input stream using a specific character set.static Source
Source. of(InputStream inputStream, CharsetDecoder charsetDecoder)
Create a source from an input stream using a specific character set.static Source
Source. of(Reader reader)
Create a source from a reader.static Source
Source. of(String string)
Create a source from a string.Methods in org.jooq that return types with arguments of type Source Modifier and Type Method Description List<Source>
FilePattern. collect()
Retrieve a set ofSource
items from this pattern.Methods in org.jooq with parameters of type Source Modifier and Type Method Description Version
Version. commit(String id, Source... meta)
Commit a newMeta
representation to the version graph.void
FilePattern.Loader. load(Source source)
LoaderCSVStep<R>
LoaderSourceStep. loadCSV(Source source)
Load CSV data.LoaderJSONStep<R>
LoaderSourceStep. loadJSON(Source source)
Load JSON data.LoaderXMLStep<R>
LoaderSourceStep. loadXML(Source source)
Load XML data.Meta
DSLContext. meta(Source... sources)
Create meta data from a set of sources. -
Uses of Source in org.jooq.impl
Methods in org.jooq.impl with parameters of type Source Modifier and Type Method Description Meta
DefaultDSLContext. meta(Source... sources)
Constructors in org.jooq.impl with parameters of type Source Constructor Description DefaultVersionProvider(Configuration configuration, Source... sources)
InformationSchemaMetaProvider(Configuration configuration, Source... sources)
-
Uses of Source in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc with parameters of type Source Modifier and Type Method Description MockFileDatabaseConfiguration
MockFileDatabaseConfiguration. source(Source source)
Constructors in org.jooq.tools.jdbc with parameters of type Source Constructor Description MockFileDatabase(Source source)
-