RandomAccess interface
for adding, deleting and pointing objects.
For user the most important are ParseLog and Transfer.
First one returns information from the parser (during file reading).
Second one should be used to quick transfer all data table from on place to another
(especially MemoryContainer.
| Interface | Description |
|---|---|
| ComparableExt<T> |
Generic interface for comparing objects that can be incomparable.
|
| RandomAccess |
Indicates that data container is random accessible.
|
| Class | Description |
|---|---|
| InstancesConverter |
This class is responsible for converting weka's Instances object to the
MemoryContainer object.
|
| ParseLog |
An abstract class for receiving parser messages.
|
| SerialInput |
This abstract class is the superclass of all classes providing serial input
of the ISF data.
|
| SerialOutput |
This abstract class is the superclass of all classes providing serial output
of the ISF data.
|
| SimpleParseLog |
Simple implementation of
ParseLog, used for printing messages to the default output of output manager
(OM class) |
| Transfer |
The
Transfer class provides static methods for transfering
data (such as loading and saving). |
| Exception | Description |
|---|---|
| ConsistencyException |
When assigned value is not consistent with previously
given, this exception is thrown.
|
| ContainerFailureException |
It is thrown when container's integerity has been violated.
|
| InvalidOperationException |
This exception is thrown when a method has been invoked at an illegal or
inappropriate time.
|
| InvalidTypeException |
An exception thrown when given param's type doesn't satisfy
the requirements imposed by class of called method.
|
| InvalidValueException |
This exception is thrown when given value is not proper
so it cannot be accepted.
|
| SerialIOException |
This exception is thrown when an error occurs during loading or saving data
using the serial input/output interface.
|
| UnknownValueException |
An UnknownValueException is thrown when an application tries
to read value that hasn't been assign and field is in "unknown" state.
|
| UnsupportedException |
This exception is thrown by output classes in the situation of trying to
write an unsupported data type.
|
| ValueNotFoundException |
Exception thrown when searched item (for example Hashtable key) was not found.
|