public interface IMultiCookable
| Modifier and Type | Method and Description |
|---|---|
void |
cook(InputStream... inputStreams)
Same as
Cookable.cook(InputStream), but cooks a set of documents into one class. |
void |
cook(InputStream[] inputStreams,
String[] encodings)
Same as
Cookable.cook(InputStream, String), but cooks a set of documents into one class. |
void |
cook(Reader... readers)
Same as
Cookable.cook(Reader), but cooks a set of documents into one class. |
void |
cook(String[] strings)
Same as
Cookable.cook(String), but cooks a set of documents into one class. |
void |
cook(String[] fileNames,
InputStream[] inputStreams)
Same as
Cookable.cook(String, InputStream), but cooks a set of documents into one class. |
void |
cook(String[] fileNames,
InputStream[] inputStreams,
String[] encodings)
Same as
Cookable.cook(String, InputStream, String), but cooks a set of documents into one class. |
void |
cook(String[] fileNames,
Reader[] readers)
Same as
Cookable.cook(String, Reader), but cooks a set of documents into one class. |
void |
cook(String[] fileNames,
String[] strings)
Same as
Cookable.cook(String, String), but cooks a set of documents into one class. |
void |
cookFiles(File[] files)
Same as
Cookable.cookFile(File), but cooks a set of documents into one class. |
void |
cookFiles(File[] files,
String[] encodings)
Same as
Cookable.cookFile(File, String), but cooks a set of documents into one class. |
void |
cookFiles(String[] fileNames)
Same as
Cookable.cookFile(String), but cooks a set of documents into one class. |
void |
cookFiles(String[] fileNames,
String[] encodings)
Same as
Cookable.cookFile(String, String), but cooks a set of documents into one class. |
void cook(Reader... readers) throws CompileException, IOException
Cookable.cook(Reader), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cook(String[] fileNames, Reader[] readers) throws CompileException, IOException
Cookable.cook(String, Reader), but cooks a set of documents into one class.
Notice that if any of the documents causes trouble, the entire compilation will fail. If you
need to report which of the documents causes the exception, you may want to use the
fileNames parameter to distinguish between the individual token sources.CompileExceptionIOExceptionvoid cook(String[] strings) throws CompileException
Cookable.cook(String), but cooks a set of documents into one class.CompileExceptionvoid cook(String[] fileNames, String[] strings) throws CompileException
Cookable.cook(String, String), but cooks a set of documents into one class.CompileExceptionvoid cook(InputStream... inputStreams) throws CompileException, IOException
Cookable.cook(InputStream), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cook(InputStream[] inputStreams, String[] encodings) throws CompileException, IOException
Cookable.cook(InputStream, String), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cook(String[] fileNames, InputStream[] inputStreams) throws CompileException, IOException
Cookable.cook(String, InputStream), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cook(String[] fileNames, InputStream[] inputStreams, String[] encodings) throws CompileException, IOException
Cookable.cook(String, InputStream, String), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cookFiles(File[] files) throws CompileException, IOException
Cookable.cookFile(File), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cookFiles(File[] files, String[] encodings) throws CompileException, IOException
Cookable.cookFile(File, String), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cookFiles(String[] fileNames) throws CompileException, IOException
Cookable.cookFile(String), but cooks a set of documents into one class.CompileExceptionIOExceptionvoid cookFiles(String[] fileNames, String[] encodings) throws CompileException, IOException
Cookable.cookFile(String, String), but cooks a set of documents into one class.CompileExceptionIOExceptionCopyright © 2020. All rights reserved.