public interface LoaderSourceStep<R extends TableRecord<R>>
Loader
API is used for configuring data loads.
The step in constructing the Loader
object where you can specify the
load type and data source.
@Support LoaderCSVStep<R> loadCSV(File file) throws FileNotFoundException
FileNotFoundException
@Support LoaderCSVStep<R> loadCSV(File file, String charsetName) throws FileNotFoundException, UnsupportedEncodingException
@Support LoaderCSVStep<R> loadCSV(File file, Charset cs) throws FileNotFoundException
FileNotFoundException
@Support LoaderCSVStep<R> loadCSV(File file, CharsetDecoder dec) throws FileNotFoundException
FileNotFoundException
@Support LoaderCSVStep<R> loadCSV(String data)
@Support LoaderCSVStep<R> loadCSV(InputStream stream)
@Support LoaderCSVStep<R> loadCSV(InputStream stream, String charsetName) throws UnsupportedEncodingException
UnsupportedEncodingException
@Support LoaderCSVStep<R> loadCSV(InputStream stream, Charset cs)
@Support LoaderCSVStep<R> loadCSV(InputStream stream, CharsetDecoder dec)
@Support LoaderCSVStep<R> loadCSV(Reader reader)
@Support LoaderXMLStep<R> loadXML(File file) throws FileNotFoundException
FileNotFoundException
@Support LoaderXMLStep<R> loadXML(File file, String charsetName) throws FileNotFoundException, UnsupportedEncodingException
@Support LoaderXMLStep<R> loadXML(File file, Charset cs) throws FileNotFoundException
FileNotFoundException
@Support LoaderXMLStep<R> loadXML(File file, CharsetDecoder dec) throws FileNotFoundException
FileNotFoundException
@Support LoaderXMLStep<R> loadXML(String data)
@Support LoaderXMLStep<R> loadXML(InputStream stream)
@Support LoaderXMLStep<R> loadXML(InputStream stream, String charsetName) throws UnsupportedEncodingException
UnsupportedEncodingException
@Support LoaderXMLStep<R> loadXML(InputStream stream, Charset cs)
@Support LoaderXMLStep<R> loadXML(InputStream stream, CharsetDecoder dec)
@Support LoaderXMLStep<R> loadXML(Reader reader)
@Support LoaderXMLStep<R> loadXML(InputSource source)
@Support LoaderJSONStep<R> loadJSON(File file) throws FileNotFoundException
FileNotFoundException
@Support LoaderJSONStep<R> loadJSON(File file, String charsetName) throws FileNotFoundException, UnsupportedEncodingException
@Support LoaderJSONStep<R> loadJSON(File file, Charset cs) throws FileNotFoundException
FileNotFoundException
@Support LoaderJSONStep<R> loadJSON(File file, CharsetDecoder dec) throws FileNotFoundException
FileNotFoundException
@Support LoaderJSONStep<R> loadJSON(String data)
@Support LoaderJSONStep<R> loadJSON(InputStream stream)
@Support LoaderJSONStep<R> loadJSON(InputStream stream, String charsetName) throws UnsupportedEncodingException
UnsupportedEncodingException
@Support LoaderJSONStep<R> loadJSON(InputStream stream, Charset cs)
@Support LoaderJSONStep<R> loadJSON(InputStream stream, CharsetDecoder dec)
@Support LoaderJSONStep<R> loadJSON(Reader reader)
Copyright © 2015. All Rights Reserved.