|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Console.MessageType>
com.xmlmind.util.Console.MessageType
public static enum Console.MessageType
Message types.
| Enum Constant Summary | |
|---|---|
DEBUG
A debugging or trace message. |
|
ERROR
A non-fatal error message. |
|
INFO
An information message. |
|
VERBOSE
A low-level information message. |
|
WARNING
A warning message. |
|
| Method Summary | |
|---|---|
static Console.MessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Console.MessageType[] |
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 Console.MessageType ERROR
public static final Console.MessageType WARNING
public static final Console.MessageType INFO
public static final Console.MessageType VERBOSE
public static final Console.MessageType DEBUG
| Method Detail |
|---|
public static Console.MessageType[] values()
for (Console.MessageType c : Console.MessageType.values()) System.out.println(c);
public static Console.MessageType 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 | ||||||||