org.jactr.core.logging
Enum Logger.Stream
java.lang.Object
java.lang.Enum<Logger.Stream>
org.jactr.core.logging.Logger.Stream
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Logger.Stream>
- Enclosing class:
- Logger
public static enum Logger.Stream
- extends java.lang.Enum<Logger.Stream>
|
Method Summary |
static Logger.Stream |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Logger.Stream[] |
values()
Returns an array containing the constants of this enum type, in
the order they're 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 |
BUFFER
public static final Logger.Stream BUFFER
DECLARATIVE
public static final Logger.Stream DECLARATIVE
EXACT_MATCH
public static final Logger.Stream EXACT_MATCH
GOAL
public static final Logger.Stream GOAL
IMAGINAL
public static final Logger.Stream IMAGINAL
OUTPUT
public static final Logger.Stream OUTPUT
PARTIAL_MATCH
public static final Logger.Stream PARTIAL_MATCH
PROCEDURAL
public static final Logger.Stream PROCEDURAL
RETRIEVAL
public static final Logger.Stream RETRIEVAL
TIME
public static final Logger.Stream TIME
VISUAL
public static final Logger.Stream VISUAL
AURAL
public static final Logger.Stream AURAL
MOTOR
public static final Logger.Stream MOTOR
VOCAL
public static final Logger.Stream VOCAL
EVENT
public static final Logger.Stream EVENT
EXCEPTION
public static final Logger.Stream EXCEPTION
values
public static final Logger.Stream[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Logger.Stream c : Logger.Stream.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Logger.Stream valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name