public static enum PreConverter.Result extends Enum<PreConverter.Result>
| Enum Constant and Description |
|---|
CONTINUE
Continue conversion.
|
SKIP
Skip converting the object.
|
| Modifier and Type | Method and Description |
|---|---|
static PreConverter.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreConverter.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreConverter.Result CONTINUE
public static final PreConverter.Result SKIP
public static PreConverter.Result[] values()
for (PreConverter.Result c : PreConverter.Result.values()) System.out.println(c);
public static PreConverter.Result 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 © 2019. All rights reserved.