public enum FrameDescriptor extends Enum<FrameDescriptor>
0 1 2 3 4 5 6
0 2 4 6 8 0 2 4 6 8 0 2 4 6 8 0 2 4 6 8 0 2 4 6 8 0 2 4 6 8 0 2 4
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Input | Type |
+-------+-------+-------+-------+-------+-------+-------+-------+
| Sequence |
+-------+-------+-------+-------+-------+-------+-------+-------+
| Time |
+-------+-------+-------+-------+-------+-------+-------+-------+
| Version | Index | Payload Size |
+-------+-------+-------+-------+-------+-------+-------+-------+
| Payload |
| ... |
| Modifier and Type | Field and Description |
|---|---|
static int |
HEADER_LENGTH |
static int |
HEADER_OFFSET |
static int |
INDEX_LENGTH |
static int |
INDEX_OFFSET |
static int |
INPUT_LENGTH |
static int |
INPUT_OFFSET |
static int |
PAYLOAD_OFFSET |
static int |
PAYLOAD_SIZE_LENGTH |
static int |
PAYLOAD_SIZE_OFFSET |
static int |
SEQUENCE_LENGTH |
static int |
SEQUENCE_OFFSET |
static int |
TIME_LENGTH |
static int |
TIME_OFFSET |
static int |
TYPE_LENGTH |
static int |
TYPE_OFFSET |
static int |
VERSION_LENGTH |
static int |
VERSION_OFFSET |
| Modifier and Type | Method and Description |
|---|---|
static FrameDescriptor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final int INPUT_OFFSET
public static final int INPUT_LENGTH
public static final int TYPE_OFFSET
public static final int TYPE_LENGTH
public static final int SEQUENCE_OFFSET
public static final int SEQUENCE_LENGTH
public static final int TIME_OFFSET
public static final int TIME_LENGTH
public static final int VERSION_OFFSET
public static final int VERSION_LENGTH
public static final int INDEX_OFFSET
public static final int INDEX_LENGTH
public static final int PAYLOAD_SIZE_OFFSET
public static final int PAYLOAD_SIZE_LENGTH
public static final int HEADER_OFFSET
public static final int HEADER_LENGTH
public static final int PAYLOAD_OFFSET
public static FrameDescriptor[] values()
for (FrameDescriptor c : FrameDescriptor.values()) System.out.println(c);
public static FrameDescriptor 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 © 2020 tools4j.org (Marco Terzer, Anton Anufriev). All Rights Reserved.