|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CompileMessageRecorder.Severity>
orc.error.compiletime.CompileMessageRecorder.Severity
public static enum CompileMessageRecorder.Severity
Enum Constant Summary | |
---|---|
DEBUG
Severity of this message is internal, for tool debugging -- users don't care. |
|
ERROR
Severity of this message is a problem that is severe enough that output was discarded or should be discarded -- it is not usable. |
|
FATAL
Severity of this message is a problem that has caused input processing to be stopped. |
|
INFO
Severity of this message is completely routine. |
|
INTERNAL
Severity of this message is an internal failure of the tool (not the user's fault). |
|
NOTICE
Severity of this message is not routine, but not a problem. |
|
UNKNOWN
Severity of this message is not known. |
|
WARNING
Severity of this message is a potential problem, but not bad enough to cause output to be disregarded -- it may still be usable. |
Method Summary | |
---|---|
static CompileMessageRecorder.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CompileMessageRecorder.Severity[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CompileMessageRecorder.Severity UNKNOWN
public static final CompileMessageRecorder.Severity DEBUG
public static final CompileMessageRecorder.Severity INFO
public static final CompileMessageRecorder.Severity NOTICE
public static final CompileMessageRecorder.Severity WARNING
public static final CompileMessageRecorder.Severity ERROR
public static final CompileMessageRecorder.Severity FATAL
public static final CompileMessageRecorder.Severity INTERNAL
Method Detail |
---|
public static CompileMessageRecorder.Severity[] values()
for (CompileMessageRecorder.Severity c : CompileMessageRecorder.Severity.values()) System.out.println(c);
public static CompileMessageRecorder.Severity 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |