public enum Reason extends Enum<Reason>
| Enum Constant and Description |
|---|
CACHED |
DEFAULT |
DISABLED |
ERROR |
SPLIT |
STATIC |
TARGETING_MATCH |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reason DISABLED
public static final Reason SPLIT
public static final Reason TARGETING_MATCH
public static final Reason DEFAULT
public static final Reason UNKNOWN
public static final Reason CACHED
public static final Reason STATIC
public static final Reason ERROR
public static Reason[] values()
for (Reason c : Reason.values()) System.out.println(c);
public static Reason 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.