org.apache.poi.util
Class LittleEndianByteArrayOutputStream
java.lang.Object
org.apache.poi.util.LittleEndianByteArrayOutputStream
- All Implemented Interfaces:
- DelayableLittleEndianOutput, LittleEndianOutput
public final class LittleEndianByteArrayOutputStream
- extends java.lang.Object
- implements LittleEndianOutput, DelayableLittleEndianOutput
Adapts a plain byte array to LittleEndianOutput
- Author:
- Josh Micich
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LittleEndianByteArrayOutputStream
public LittleEndianByteArrayOutputStream(byte[] buf,
int startOffset,
int maxWriteLen)
LittleEndianByteArrayOutputStream
public LittleEndianByteArrayOutputStream(byte[] buf,
int startOffset)
writeByte
public void writeByte(int v)
- Specified by:
writeByte
in interface LittleEndianOutput
writeDouble
public void writeDouble(double v)
- Specified by:
writeDouble
in interface LittleEndianOutput
writeInt
public void writeInt(int v)
- Specified by:
writeInt
in interface LittleEndianOutput
writeLong
public void writeLong(long v)
- Specified by:
writeLong
in interface LittleEndianOutput
writeShort
public void writeShort(int v)
- Specified by:
writeShort
in interface LittleEndianOutput
write
public void write(byte[] b)
- Specified by:
write
in interface LittleEndianOutput
write
public void write(byte[] b,
int offset,
int len)
- Specified by:
write
in interface LittleEndianOutput
getWriteIndex
public int getWriteIndex()
createDelayedOutput
public LittleEndianOutput createDelayedOutput(int size)
- Description copied from interface:
DelayableLittleEndianOutput
- Creates an output stream intended for outputting a sequence of size bytes.
- Specified by:
createDelayedOutput
in interface DelayableLittleEndianOutput
Copyright 2012 The Apache Software Foundation or
its licensors, as applicable.