|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IppAlert.Type>
pl.mbdev.openstage.IppAlert.Type
public static enum IppAlert.Type
Possible kinds of alerts (see IppAlert
) are defined here.
Enum Constant Summary | |
---|---|
ALARM
This is an alarm. |
|
CONFIRMATION
This is a confirmation. |
|
ERROR
This is an error. |
|
INFO
This is just a piece of information. |
|
WARNING
This is a warning. |
Method Summary | |
---|---|
static IppAlert.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IppAlert.Type[] |
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 IppAlert.Type ALARM
public static final IppAlert.Type CONFIRMATION
public static final IppAlert.Type ERROR
public static final IppAlert.Type INFO
public static final IppAlert.Type WARNING
Method Detail |
---|
public static IppAlert.Type[] values()
for (IppAlert.Type c : IppAlert.Type.values()) System.out.println(c);
public static IppAlert.Type 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 |