|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IProgressListener.Severity>
org.eclipse.mat.util.IProgressListener.Severity
public static enum IProgressListener.Severity
Defines the severites possible for a user message.
ERROR
- a serious error (most severe)
WARNING
- a warning (less severe)INFO
- an
informational ("fyi") message (least severe)
Enum Constant Summary | |
---|---|
ERROR
Severity indicating this user message represents an error. |
|
INFO
Severity indicating this user message is informational only. |
|
WARNING
Severity indicating this user message represents a warning. |
Method Summary | |
---|---|
static IProgressListener.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IProgressListener.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 |
---|
compareTo, equals, 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 IProgressListener.Severity INFO
public static final IProgressListener.Severity WARNING
public static final IProgressListener.Severity ERROR
Method Detail |
---|
public static IProgressListener.Severity[] values()
for (IProgressListener.Severity c : IProgressListener.Severity.values()) System.out.println(c);
public static IProgressListener.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 |