|
EXIficient | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CodingMode>
com.siemens.ct.exi.CodingMode
public enum CodingMode
The alignment option is used to control the alignment of event codes and content items.
The value is one of bit-packed, byte-alignment, pre-compression, or compression.
Enum Constant Summary | |
---|---|
BIT_PACKED
Alignment option value bit-packed indicates that the the event codes and associated content are packed in bits without any paddings in-between. |
|
BYTE_PACKED
Alignment option value byte-alignment indicates that the event codes and associated content are aligned on byte boundaries. |
|
COMPRESSION
The compression option is used to increase compactness using additional computational resources (DEFLATE algorithm). |
|
PRE_COMPRESSION
Alignment option value pre-compression alignment indicates that all steps involved in compression are to be done with the exception of the final step of applying the DEFLATE algorithm. |
Method Summary | |
---|---|
int |
getDeflateLevel()
|
void |
setDeflateLevel(int deflateLevel)
|
boolean |
usesDeflate()
|
boolean |
usesRechanneling()
|
static CodingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CodingMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CodingMode BIT_PACKED
public static final CodingMode BYTE_PACKED
public static final CodingMode PRE_COMPRESSION
public static final CodingMode COMPRESSION
Method Detail |
---|
public static CodingMode[] values()
for (CodingMode c : CodingMode.values()) System.out.println(c);
public static CodingMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean usesDeflate()
public int getDeflateLevel()
public void setDeflateLevel(int deflateLevel)
public boolean usesRechanneling()
|
EXIficient | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |