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