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