|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.openstreetmap.osmosis.core.store.DataOutputStoreWriter
public class DataOutputStoreWriter
Allows persisted output to be written to a DataOutput implementation.
Constructor Summary | |
---|---|
DataOutputStoreWriter(java.io.DataOutput output)
Creates a new instance. |
Method Summary | |
---|---|
void |
writeBoolean(boolean value)
Writes a boolean to storage. |
void |
writeByte(byte value)
Writes a byte to storage. |
void |
writeCharacter(char value)
Writes a character to storage. |
void |
writeDouble(double value)
Writes a double to storage. |
void |
writeInteger(int value)
Writes an integer to storage. |
void |
writeLong(long value)
Writes a long to storage. |
void |
writeString(java.lang.String value)
Writes a String to storage. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DataOutputStoreWriter(java.io.DataOutput output)
output
- The destination to write the data to.Method Detail |
---|
public void writeBoolean(boolean value)
writeBoolean
in interface StoreWriter
value
- The value to be written.public void writeByte(byte value)
writeByte
in interface StoreWriter
value
- The value to be written.public void writeCharacter(char value)
writeCharacter
in interface StoreWriter
value
- The value to be written.public void writeInteger(int value)
writeInteger
in interface StoreWriter
value
- The value to be written.public void writeLong(long value)
writeLong
in interface StoreWriter
value
- The value to be written.public void writeDouble(double value)
writeDouble
in interface StoreWriter
value
- The value to be written.public void writeString(java.lang.String value)
writeString
in interface StoreWriter
value
- The value to be written.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |