public enum ConsoleAPICalledType extends Enum<ConsoleAPICalledType>
| Enum Constant and Description |
|---|
ASSERT |
CLEAR |
COUNT |
DEBUG |
DIR |
DIRXML |
END_GROUP |
ERROR |
INFO |
LOG |
PROFILE |
PROFILE_END |
START_GROUP |
START_GROUP_COLLAPSED |
TABLE |
TIME_END |
TRACE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static ConsoleAPICalledType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsoleAPICalledType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsoleAPICalledType LOG
public static final ConsoleAPICalledType DEBUG
public static final ConsoleAPICalledType INFO
public static final ConsoleAPICalledType ERROR
public static final ConsoleAPICalledType WARNING
public static final ConsoleAPICalledType DIR
public static final ConsoleAPICalledType DIRXML
public static final ConsoleAPICalledType TABLE
public static final ConsoleAPICalledType TRACE
public static final ConsoleAPICalledType CLEAR
public static final ConsoleAPICalledType START_GROUP
public static final ConsoleAPICalledType START_GROUP_COLLAPSED
public static final ConsoleAPICalledType END_GROUP
public static final ConsoleAPICalledType ASSERT
public static final ConsoleAPICalledType PROFILE
public static final ConsoleAPICalledType PROFILE_END
public static final ConsoleAPICalledType COUNT
public static final ConsoleAPICalledType TIME_END
public static ConsoleAPICalledType[] values()
for (ConsoleAPICalledType c : ConsoleAPICalledType.values()) System.out.println(c);
public static ConsoleAPICalledType 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.