public enum ECodec extends Enum<ECodec>
Enum Constant and Description |
---|
JSON_ARRAY
Json array decoder.
|
LINE
a line delimiter standard codec.
|
MULTILINE_REGEX
Multiline decoder, using a regex to detect the start of a subsequent line.
|
MULTILINE_STARTSWITH
Multiline decoder, using a prefix to detect the start of a subsequent line.
|
XML
XML decoder.
|
Modifier and Type | Method and Description |
---|---|
static ECodec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECodec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECodec LINE
public static final ECodec XML
public static final ECodec MULTILINE_REGEX
public static final ECodec MULTILINE_STARTSWITH
public static final ECodec JSON_ARRAY
public static ECodec[] values()
for (ECodec c : ECodec.values()) System.out.println(c);
public static ECodec 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 © 2023. All rights reserved.