Interface | Description |
---|---|
Address<T> |
Interface of a generic storage address.
|
IntStorage<T> |
Interface for storage that uses int addresses.
|
IntStorageIndexed<T> |
Interface of an integer storage that supports searching.
|
IntStorageSearch<T> |
This interface represents a
ModifiableSearch that supports getting
IntStorage 's address of the found object. |
LongStorage<T> |
Interface for storage that uses long addresses.
|
LongStorageIndexed<T> |
Interface of a long storage that supports searching.
|
LongStorageSearch<T> |
This interface represents a
ModifiableSearch that supports getting
LongStorage 's address of the found object. |
Storage<T> |
Interface of a generic storage.
|
StorageIndexed<T> |
Interface of a generic storage that supports searching.
|
StorageSearch<T> |
This interface represents a
ModifiableSearch that supports getting
Storage 's address of the found object. |
Class | Description |
---|---|
IntAddress<T> |
Implementation of
Address for a storage that uses int addresses. |
LongAddress<T> |
Implementation of
Address for a storage that uses long addresses. |
Storages |
Collection of utility methods for
Storage s. |
Exception | Description |
---|---|
InvalidAddressException |
Exception that indicates that an invalid address has been used while
accessing a storage.
|
ReadonlyStorageException |
Exception that indicates that a write operation was requested on a
read-only storage.
|