Enum Constant and Description |
---|
AUTO
Auto zserio array with length stored as varsize in the bit stream before the array.
|
IMPLICIT
Implicit zserio array with length defined by the size of the rest bit stream to read.
|
NORMAL
Normal zserio array with known length defined by expression.
|
Modifier and Type | Method and Description |
---|---|
static ArrayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayType NORMAL
public static final ArrayType AUTO
public static final ArrayType IMPLICIT
public static ArrayType[] values()
for (ArrayType c : ArrayType.values()) System.out.println(c);
public static ArrayType 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 namejava.lang.NullPointerException
- if the argument is nullLast updated 2024-12-05 10:34:50