public static enum IProgressListener.Severity extends Enum<IProgressListener.Severity>
ERROR - a serious error (most severe)
WARNING - a warning (less severe)INFO - an
informational ("fyi") message (least severe)| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static IProgressListener.Severity |
valueOf(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.
|
public static final IProgressListener.Severity INFO
public static final IProgressListener.Severity WARNING
public static final IProgressListener.Severity ERROR
public static IProgressListener.Severity[] values()
for (IProgressListener.Severity c : IProgressListener.Severity.values()) System.out.println(c);
public static IProgressListener.Severity valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null