org.openstreetmap.osmosis.core.store
Interface StoreReader

All Known Implementing Classes:
DataInputStoreReader

public interface StoreReader

Implementations of this interface are used by Storeable classes to load their state.

Author:
Brett Henderson

Method Summary
 boolean readBoolean()
          Reads a boolean from storage.
 byte readByte()
          Reads a byte from storage.
 char readCharacter()
          Reads a character from storage.
 double readDouble()
          Reads a double from storage.
 int readInteger()
          Reads an integer from storage.
 long readLong()
          Reads a long from storage.
 java.lang.String readString()
          Reads a String from storage.
 

Method Detail

readBoolean

boolean readBoolean()
Reads a boolean from storage.

Returns:
The loaded value.

readByte

byte readByte()
Reads a byte from storage.

Returns:
The loaded value.

readCharacter

char readCharacter()
Reads a character from storage.

Returns:
The loaded value.

readInteger

int readInteger()
Reads an integer from storage.

Returns:
The loaded value.

readLong

long readLong()
Reads a long from storage.

Returns:
The loaded value.

readDouble

double readDouble()
Reads a double from storage.

Returns:
The loaded value.

readString

java.lang.String readString()
Reads a String from storage.

Returns:
The loaded value.