public enum AIProgressMessageCategory extends java.lang.Enum<AIProgressMessageCategory> implements ValueEnum
| Enum Constant and Description |
|---|
DETAIL Informational detail. |
ERROR Concerns an error. |
RECOVERABLEERROR Concerns a recoverable error. |
SUCCESS Something succeeded. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static AIProgressMessageCategory | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static AIProgressMessageCategory[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final AIProgressMessageCategory SUCCESS
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "success".
public static final AIProgressMessageCategory DETAIL
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "detail".
public static final AIProgressMessageCategory RECOVERABLEERROR
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "recoverableError".
public static final AIProgressMessageCategory ERROR
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "error".
public static AIProgressMessageCategory[] values()
for (AIProgressMessageCategory c : AIProgressMessageCategory.values()) System.out.println(c);
public static AIProgressMessageCategory 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 null