public enum ConsoleMessageSource extends Enum<ConsoleMessageSource>
| Enum Constant and Description |
|---|
APPCACHE |
CONSOLE_API |
DEPRECATION |
JAVASCRIPT |
NETWORK |
OTHER |
RENDERING |
SECURITY |
STORAGE |
WORKER |
XML |
| Modifier and Type | Method and Description |
|---|---|
static ConsoleMessageSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsoleMessageSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsoleMessageSource XML
public static final ConsoleMessageSource JAVASCRIPT
public static final ConsoleMessageSource NETWORK
public static final ConsoleMessageSource CONSOLE_API
public static final ConsoleMessageSource STORAGE
public static final ConsoleMessageSource APPCACHE
public static final ConsoleMessageSource RENDERING
public static final ConsoleMessageSource SECURITY
public static final ConsoleMessageSource OTHER
public static final ConsoleMessageSource DEPRECATION
public static final ConsoleMessageSource WORKER
public static ConsoleMessageSource[] values()
for (ConsoleMessageSource c : ConsoleMessageSource.values()) System.out.println(c);
public static ConsoleMessageSource 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.