public enum CompilerMessageCategory extends java.lang.Enum<CompilerMessageCategory>
Enum Constant and Description |
---|
ERROR |
INFORMATION |
STATISTICS |
WARNING |
Modifier and Type | Method and Description |
---|---|
abstract java.lang.String |
getPresentableText() |
static CompilerMessageCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerMessageCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerMessageCategory ERROR
public static final CompilerMessageCategory WARNING
public static final CompilerMessageCategory INFORMATION
public static final CompilerMessageCategory STATISTICS
public static CompilerMessageCategory[] values()
for (CompilerMessageCategory c : CompilerMessageCategory.values()) System.out.println(c);
public static CompilerMessageCategory 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 abstract java.lang.String getPresentableText()