Serializable, Comparable<DecoderOption>public enum DecoderOption extends Enum<DecoderOption>
| Enum Constant | Description |
|---|---|
LAZY |
Use lazy evaluation when decoding fields.
|
| Modifier and Type | Method | Description |
|---|---|---|
static DecoderOption |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static DecoderOption[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecoderOption LAZY
public static DecoderOption[] values()
for (DecoderOption c : DecoderOption.values()) System.out.println(c);
public static DecoderOption 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. All rights reserved.