public class ByteVector
extends java.lang.Object
| Modifier and Type | Field and Description | 
|---|---|
| (package private) byte[] | dataThe content of this vector. | 
| (package private) int | lengthActual number of bytes in this vector. | 
| Constructor and Description | 
|---|
| ByteVector()Constructs a new  ByteVectorwith a default initial
 size. | 
| ByteVector(int initialSize)Constructs a new  ByteVectorwith the given initial
 size. | 
| Modifier and Type | Method and Description | 
|---|---|
| private void | enlarge(int size)Enlarge this byte vector so that it can receive n more bytes. | 
| (package private) ByteVector | put11(int b1,
     int b2)Puts two bytes into this byte vector. | 
| (package private) ByteVector | put12(int b,
     int s)Puts a byte and a short into this byte vector. | 
| ByteVector | putByte(int b)Puts a byte into this byte vector. | 
| ByteVector | putByteArray(byte[] b,
            int off,
            int len)Puts an array of bytes into this byte vector. | 
| ByteVector | putInt(int i)Puts an int into this byte vector. | 
| ByteVector | putLong(long l)Puts a long into this byte vector. | 
| ByteVector | putShort(int s)Puts a short into this byte vector. | 
| ByteVector | putUTF8(java.lang.String s)Puts an UTF8 string into this byte vector. | 
byte[] data
int length
public ByteVector()
ByteVector with a default initial
 size.public ByteVector(int initialSize)
ByteVector with the given initial
 size.initialSize - the initial size of the byte vector to be constructed.public ByteVector putByte(int b)
b - a byte.ByteVector put11(int b1, int b2)
b1 - a byte.b2 - another byte.public ByteVector putShort(int s)
s - a short.ByteVector put12(int b, int s)
b - a byte.s - a short.public ByteVector putInt(int i)
i - an int.public ByteVector putLong(long l)
l - a long.public ByteVector putUTF8(java.lang.String s)
s - a String.public ByteVector putByteArray(byte[] b, int off, int len)
b - an array of bytes. May be null to put len
            null bytes into this byte vector.off - index of the fist byte of b that must be copied.len - number of bytes of b that must be copied.private void enlarge(int size)
size - number of additional bytes that this byte vector should be
             able to receive.