Uses of Class
org.jooq.Source
-
Packages that use Source Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes.org.jooq.tools.jdbc Theorg.jooq.tools.jdbcpackage 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 SourceSource. of(byte[] bytes)Create a source from binary data.static SourceSource. of(byte[] bytes, String charsetName)Create a source from binary data using a specific character set.static SourceSource. of(byte[] bytes, Charset charset)Create a source from binary data using a specific character set.static SourceSource. of(byte[] bytes, CharsetDecoder charsetDecoder)Create a source from binary data using a specific character set.static SourceSource. of(File file)Create a source from a file.static SourceSource. of(File file, String charsetName)Create a source from a file using a specific character set.static SourceSource. of(File file, Charset charset)Create a source from a file using a specific character set.static SourceSource. of(File file, CharsetDecoder charsetDecoder)Create a source from a file using a specific character set.static SourceSource. of(InputStream inputStream)Create a source from an input stream.static SourceSource. of(InputStream inputStream, String charsetName)Create a source from an input stream using a specific character set.static SourceSource. of(InputStream inputStream, Charset charset)Create a source from an input stream using a specific character set.static SourceSource. of(InputStream inputStream, CharsetDecoder charsetDecoder)Create a source from an input stream using a specific character set.static SourceSource. of(Reader reader)Create a source from a reader.static SourceSource. 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 ofSourceitems from this pattern.Methods in org.jooq with parameters of type Source Modifier and Type Method Description VersionVersion. commit(String id, Source... meta)Commit a newMetarepresentation to the version graph.voidFilePattern.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.MetaDSLContext. 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 MetaDefaultDSLContext. 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 MockFileDatabaseConfigurationMockFileDatabaseConfiguration. source(Source source)Constructors in org.jooq.tools.jdbc with parameters of type Source Constructor Description MockFileDatabase(Source source)
-