public enum CodingMode extends Enum<CodingMode>
The value is one of bit-packed, byte-alignment, pre-compression, or compression.
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static CodingMode |
valueOf(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.
|
public static final CodingMode BIT_PACKED
public static final CodingMode BYTE_PACKED
public static final CodingMode PRE_COMPRESSION
public static final CodingMode COMPRESSION
public static CodingMode[] values()
for (CodingMode c : CodingMode.values()) System.out.println(c);
public static CodingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Siemens AG. All rights reserved.