public static enum LogEntry.Category extends java.lang.Enum<LogEntry.Category>
| Enum Constant and Description |
|---|
OTHER |
PARSE_EXCEPTION |
SYMBOL_FACADE_EXCEPTION |
TYPERESOLUTION_EXCEPTION |
XPATH_EVALUATION_EXCEPTION |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
name |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static LogEntry.Category |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogEntry.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogEntry.Category PARSE_EXCEPTION
public static final LogEntry.Category TYPERESOLUTION_EXCEPTION
public static final LogEntry.Category SYMBOL_FACADE_EXCEPTION
public static final LogEntry.Category XPATH_EVALUATION_EXCEPTION
public static final LogEntry.Category OTHER
public static LogEntry.Category[] values()
for (LogEntry.Category c : LogEntry.Category.values()) System.out.println(c);
public static LogEntry.Category valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<LogEntry.Category>Copyright © 2002–2017 PMD. All rights reserved.