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