|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use KettleFileException | |
---|---|
org.pentaho.di.compatibility | Contains all classes that make up the possible Value types: ValueString, ValueNumber, ..., the interface and the Value class itself. |
org.pentaho.di.core | |
org.pentaho.di.core.database | Contains all the different database dialects as well as the DatabaseMeta class (definition) and the Database class (execution) |
org.pentaho.di.core.exception | This package contains a set of Exceptions used in Kettle. |
org.pentaho.di.core.logging | This package contains the Log4j Kettle appenders and Kettle layout as well as the Kettle Log Message. |
org.pentaho.di.core.plugins | |
org.pentaho.di.core.row | |
org.pentaho.di.core.vfs | |
org.pentaho.di.trans.step.errorhandling | |
org.pentaho.di.trans.steps.textfileinput | |
org.pentaho.di.ui.i18n.editor | |
org.pentaho.di.ui.spoon.delegates |
Uses of KettleFileException in org.pentaho.di.compatibility |
---|
Methods in org.pentaho.di.compatibility that throw KettleFileException | |
---|---|
void |
Row.write(DataOutputStream dos)
Write the content of the row to a DataOutputStream. |
void |
Value.write(OutputStream outputStream)
Write the value, including the meta-data to a DataOutputStream |
boolean |
Row.writeData(DataOutputStream dos)
Write a row of Values to a DataOutputStream, without saving the meta-data. |
boolean |
Value.writeData(DataOutputStream dos)
Write the data of this Value, without the meta-data to a DataOutputStream |
Constructors in org.pentaho.di.compatibility that throw KettleFileException | |
---|---|
Row(DataInputStream dis)
Read a row of Values from an input-stream. |
|
Row(DataInputStream dis,
int size,
Row meta)
Read a number of Values without meta-data into a row. |
|
Row(DataInputStream dis,
Row meta)
Read a number of Values without meta-data into a row. |
|
Value(InputStream is)
Read the Value, including meta-data from a DataInputStream |
|
Value(Value metaData,
DataInputStream dis)
Read the data of a Value from a DataInputStream, the meta-data of the value has to be set before calling this method! |
Uses of KettleFileException in org.pentaho.di.core |
---|
Methods in org.pentaho.di.core that throw KettleFileException | |
---|---|
void |
DBCache.saveCache()
|
Constructors in org.pentaho.di.core that throw KettleFileException | |
---|---|
DBCacheEntry(DataInputStream dis)
Read the data for this Cache entry from a data input stream |
|
ResultFile(Node node)
|
Uses of KettleFileException in org.pentaho.di.core.database |
---|
Methods in org.pentaho.di.core.database that throw KettleFileException | |
---|---|
void |
SQLStatementParserTest.testParseStatements_appostrophy_in_backticks()
|
Uses of KettleFileException in org.pentaho.di.core.exception |
---|
Subclasses of KettleFileException in org.pentaho.di.core.exception | |
---|---|
class |
KettleEOFException
This is an exception thrown by file handling (I/O) |
Uses of KettleFileException in org.pentaho.di.core.logging |
---|
Methods in org.pentaho.di.core.logging that throw KettleFileException | |
---|---|
static Log4jFileAppender |
LogWriter.createFileAppender(String filename,
boolean exact)
Create a file appender |
static Log4jFileAppender |
LogWriter.createFileAppender(String filename,
boolean exact,
boolean append)
Create a file appender |
Uses of KettleFileException in org.pentaho.di.core.plugins |
---|
Methods in org.pentaho.di.core.plugins that throw KettleFileException | |
---|---|
org.apache.commons.vfs.FileObject[] |
PluginFolder.findJarFiles()
|
org.apache.commons.vfs.FileObject[] |
PluginFolderInterface.findJarFiles()
Find all the jar files in this plugin folder |
org.apache.commons.vfs.FileObject[] |
PluginFolder.findJarFiles(boolean includeLibJars)
|
Uses of KettleFileException in org.pentaho.di.core.row |
---|
Methods in org.pentaho.di.core.row that throw KettleFileException | |
---|---|
Object[] |
RowMetaInterface.readData(DataInputStream inputStream)
De-serialize a row of data (no metadata is read) from an input stream. |
Object |
ValueMeta.readData(DataInputStream inputStream)
|
Object |
ValueMetaInterface.readData(DataInputStream inputStream)
De-serialize data from an inputstream. |
Object[] |
RowMeta.readData(DataInputStream inputStream)
|
void |
ValueMeta.writeData(DataOutputStream outputStream,
Object object)
|
void |
ValueMetaInterface.writeData(DataOutputStream outputStream,
Object object)
Serialize the content of the specified data object to the outputStream. |
void |
RowMetaInterface.writeData(DataOutputStream outputStream,
Object[] data)
Write a serialized version of the supplied data to the outputStream (based on the metadata but not the metadata itself). |
void |
RowMeta.writeData(DataOutputStream outputStream,
Object[] data)
Write ONLY the specified data to the outputStream |
void |
RowMetaInterface.writeMeta(DataOutputStream outputStream)
Write a serialized version of this class (Row Metadata) to the specified outputStream. |
void |
ValueMeta.writeMeta(DataOutputStream outputStream)
|
void |
ValueMetaInterface.writeMeta(DataOutputStream outputStream)
Write the content of this class (metadata) to the specified output stream. |
void |
RowMeta.writeMeta(DataOutputStream outputStream)
Write ONLY the specified metadata to the outputStream |
Constructors in org.pentaho.di.core.row that throw KettleFileException | |
---|---|
RowMeta(DataInputStream inputStream)
|
|
ValueMeta(DataInputStream inputStream)
|
Uses of KettleFileException in org.pentaho.di.core.vfs |
---|
Methods in org.pentaho.di.core.vfs that throw KettleFileException | |
---|---|
static org.apache.commons.vfs.FileObject |
KettleVFS.createTempFile(String prefix,
String suffix,
String directory)
|
static org.apache.commons.vfs.FileObject |
KettleVFS.createTempFile(String prefix,
String suffix,
String directory,
VariableSpace space)
|
static boolean |
KettleVFS.fileExists(String vfsFilename)
|
static boolean |
KettleVFS.fileExists(String vfsFilename,
VariableSpace space)
|
static org.apache.commons.vfs.FileObject |
KettleVFS.getFileObject(String vfsFilename)
|
static org.apache.commons.vfs.FileObject |
KettleVFS.getFileObject(String vfsFilename,
VariableSpace space)
|
static org.apache.commons.vfs.FileObject |
KettleVFS.getFileObject(String vfsFilename,
VariableSpace space,
org.apache.commons.vfs.FileSystemOptions fsOptions)
|
static InputStream |
KettleVFS.getInputStream(String vfsFilename)
|
static InputStream |
KettleVFS.getInputStream(String vfsFilename,
VariableSpace space)
|
static OutputStream |
KettleVFS.getOutputStream(String vfsFilename,
boolean append)
|
static OutputStream |
KettleVFS.getOutputStream(String vfsFilename,
VariableSpace space,
boolean append)
|
static String |
KettleVFS.getTextFileContent(String vfsFilename,
String charSetName)
Read a text file (like an XML document). |
static String |
KettleVFS.getTextFileContent(String vfsFilename,
VariableSpace space,
String charSetName)
|
Uses of KettleFileException in org.pentaho.di.trans.step.errorhandling |
---|
Methods in org.pentaho.di.trans.step.errorhandling that throw KettleFileException | |
---|---|
static org.apache.commons.vfs.FileObject |
AbstractFileErrorHandler.getReplayFilename(String destinationDirectory,
String processingFilename,
Date date,
String extension,
Object source)
|
static org.apache.commons.vfs.FileObject |
AbstractFileErrorHandler.getReplayFilename(String destinationDirectory,
String processingFilename,
String dateString,
String extension,
Object source)
|
Uses of KettleFileException in org.pentaho.di.trans.steps.textfileinput |
---|
Methods in org.pentaho.di.trans.steps.textfileinput that throw KettleFileException | |
---|---|
static String |
TextFileInput.getLine(LogChannelInterface log,
InputStreamReader reader,
EncodingType encodingType,
int formatNr,
StringBuilder line)
|
static String |
TextFileInput.getLine(LogChannelInterface log,
InputStreamReader reader,
int formatNr,
StringBuilder line)
|
Uses of KettleFileException in org.pentaho.di.ui.i18n.editor |
---|
Methods in org.pentaho.di.ui.i18n.editor that throw KettleFileException | |
---|---|
void |
Translator2.readFiles(List<String> directories)
|
void |
Translator.readFiles(String directory)
|
Uses of KettleFileException in org.pentaho.di.ui.spoon.delegates |
---|
Methods in org.pentaho.di.ui.spoon.delegates that throw KettleFileException | |
---|---|
TabMapEntry |
SpoonTabsDelegate.findTabForTransformation(TransMeta trans)
Finds the tab for the transformation that matches the metadata provided (either the file must be the same or the repository id). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |