Package | Description |
---|---|
org.jlab.coda.hipo |
Modifier and Type | Method and Description |
---|---|
HeaderType |
FileHeader.getFileType()
Get the file's type.
|
static HeaderType |
FileHeader.getFileType(int word)
Get the file's type from the bit info word.
|
HeaderType |
FileHeader.getHeaderType()
Get the type of header this is.
|
HeaderType |
RecordHeader.getHeaderType()
Get the type of header this is.
|
static HeaderType |
HeaderType.getHeaderType(int val)
Get the enum from the integer value.
|
static HeaderType |
HeaderType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HeaderType[] |
HeaderType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
RecordHeader(HeaderType type)
Constructor which sets the type of header this is.
|
RecordOutputStream(java.nio.ByteBuffer buffer,
int maxEventCount,
CompressionType compressionType,
HeaderType hType)
Constructor with arguments.
|
RecordOutputStream(java.nio.ByteOrder order,
int maxEventCount,
int maxBufferSize,
CompressionType compressionType,
HeaderType hType)
Constructor with arguments.
|
Writer(HeaderType hType,
java.nio.ByteOrder order,
int maxEventCount,
int maxBufferSize)
Constructor with byte order and header type.
|
Writer(HeaderType hType,
java.nio.ByteOrder order,
int maxEventCount,
int maxBufferSize,
java.lang.String dictionary,
byte[] firstEvent,
CompressionType compType,
boolean addTrailerIndex)
Constructor with byte order.
|
WriterMT(HeaderType hType,
java.nio.ByteOrder order,
int maxEventCount,
int maxBufferSize,
java.lang.String dictionary,
byte[] firstEvent,
int firstEventLen,
CompressionType compType,
int compressionThreads,
boolean addTrailerIndex,
int ringSize)
Constructor with byte order.
|