Package ome.codecs
Class ByteVector
- java.lang.Object
-
- ome.codecs.ByteVector
-
public class ByteVector extends Object
A growable array of bytes.- Author:
- Wayne Rasband wsr at nih.gov
-
-
Constructor Summary
Constructors Constructor Description ByteVector()
ByteVector(byte[] byteBuffer)
ByteVector(int initialSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(byte x)
void
add(byte[] array)
void
add(byte[] array, int off, int len)
void
clear()
byte
get(int index)
int
size()
byte[]
toByteArray()
-