public static enum LogEntry.Kind extends java.lang.Enum<LogEntry.Kind>
Enum Constant and Description |
---|
ERROR
Signifies a severe translation error.
|
MESSAGE
Signifies an informational message that highlights some issue in the specification (or in
the tool) that requires the user's attention, but is not necessarily an error.
|
WARNING
Signifies a minor translation error.
|
Modifier and Type | Method and Description |
---|---|
static LogEntry.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogEntry.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogEntry.Kind ERROR
public static final LogEntry.Kind WARNING
public static final LogEntry.Kind MESSAGE
public static LogEntry.Kind[] values()
for (LogEntry.Kind c : LogEntry.Kind.values()) System.out.println(c);
public static LogEntry.Kind 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 null