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