- java.lang.Object
-
- org.jooq.Source
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Source
of(byte[] bytes)
Create a source from binary data.static Source
of(byte[] bytes, Charset charset)
Create a source from binary data using a specific character set.static Source
of(InputStream inputStream)
Create a source from an input stream.static Source
of(InputStream inputStream, Charset charset)
Create a source from an input stream using a specific character set.static Source
of(Reader reader)
Create a source from a reader.static Source
of(String string)
Create a source from a string.Reader
reader()
Produce a reader from this source.
-
-
-
Method Detail
-
of
public static final Source of(byte[] bytes)
Create a source from binary data.
-
of
public static final Source of(byte[] bytes, Charset charset)
Create a source from binary data using a specific character set.
-
of
public static final Source of(InputStream inputStream)
Create a source from an input stream.
-
of
public static final Source of(InputStream inputStream, Charset charset)
Create a source from an input stream using a specific character set.
-
reader
public final Reader reader()
Produce a reader from this source.
-
-