public enum Returned extends Enum<Returned>
| Modifier and Type | Method and Description |
|---|---|
static Returned |
getByValue(String value) |
static Returned |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Returned[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Returned DEFAULT
public static final Returned ALWAYS
public static final Returned NEVER
public static final Returned REQUEST
public static Returned[] values()
for (Returned c : Returned.values()) System.out.println(c);
public static Returned 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.