public enum OnNoResult extends Enum<OnNoResult>
Modifier and Type | Class and Description |
---|---|
static class |
OnNoResult.DataDecoder
A Data decoder for this Enum
|
Modifier and Type | Field and Description |
---|---|
static String |
EXCEPTION_STR |
static String |
NULLIFY_STR |
Modifier and Type | Method and Description |
---|---|
static OnNoResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnNoResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnNoResult NULLIFY
public static final OnNoResult EXCEPTION
public static final String NULLIFY_STR
public static final String EXCEPTION_STR
public static OnNoResult[] values()
for (OnNoResult c : OnNoResult.values()) System.out.println(c);
public static OnNoResult 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.