public enum APIStatus extends Enum<APIStatus>
| Enum Constant and Description |
|---|
done |
failed |
initialized |
user_input_required |
| Modifier and Type | Method and Description |
|---|---|
static APIStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static APIStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIStatus initialized
public static final APIStatus failed
public static final APIStatus user_input_required
public static final APIStatus done
public static APIStatus[] values()
for (APIStatus c : APIStatus.values()) System.out.println(c);
public static APIStatus 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 © 2021 Dapi. All rights reserved.