See: Description
| Interface | Description |
|---|---|
| FileStates | |
| Storable |
An interface for all objects that support loading and saving themselves
through the ObjectCatalog class.
|
| Class | Description |
|---|---|
| Base64decoderStream |
Receive a stream of base64 encoded bytes and decode to the original.
|
| BufferedReader | |
| BufferedStream |
BufferedStream offers a faster way to read and write data from streams in a
buffered manner.
|
| ByteArrayStream |
Creates a byte array stream, which is a growable array of bytes.
|
| CharStream | |
| CompressedByteArrayStream |
Creates a compressed byte array stream, saving memory when reading and writting
huge amount of data.
|
| CompressedByteArrayStream.DirectCharConverter |
Implements a CharacterConverter that converts from char[] to byte[] which just
casts the char to byte; thus, ignoring any non-ASCII character.
|
| Connector |
Used to open socket connections over CRADLE, WIFI, MDS, GPRS.
|
| CRC32Stream |
Computes CRC32 data checksum of a stream.
|
| DataStream |
DataStream can be attached to any Stream such as a
PortConnector, PDBFile, or ByteArrayStream, which lets you read and write
standard Java data types like int, double, and String in a simple
manner.
|
| DataStreamLE |
DataStreamLE can be attached to any Stream such as a
PortConnector, PDBFile, or ByteArrayStream, which lets you read and write
standard Java data types like int, double, and String in a simple
manner.
|
| File |
File represents a file or directory.
|
| File4D | |
| FilterReader | |
| LineReader |
Used to read lines ending with \r\n (enter/linefeed) or \n (linefeed) from a stream.
|
| ObjectPDBFile |
An extension to PDBFile that allows storage and retrieval of objects that
implement the Storable interface.
|
| PDBFile |
PDBFile is a collection of records commonly referred to as a database on small devices.
|
| PDBFile4D | |
| PDBStream |
Used to make a PDBFile act as a single Stream, reading all records in sequence.
|
| RandomAccessStream |
Represents a stream that behaves like a large array of bytes and may be randomly accessed.
|
| ResizeRecord |
This class is used to handle record sizes of a PDBFile.
|
| Stream |
Stream is the base class for all stream-based I/O classes.
|
| StreamConnectionNotifier |
Base class for connection notifiers.
|
| TokenReader |
Used to read an array of tokens in a line ending with \r\n (enter/linefeed) from a stream.
|
| Exception | Description |
|---|---|
| EOFException |
Signals that an end of file or end of stream has been reached unexpectedly during input.
|
| FileNotFoundException |
Thrown when a file was not found.
|
| IllegalArgumentIOException |
Illegal argument passed to an IO method.
|
| IOException |
Base class of all input/output exceptions.
|