|
Platform SDK Java 8.5 API Reference | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TargetType>
com.genesyslab.platform.apptemplate.configuration.log.TargetType
public enum TargetType
Enumeration of logging target types, which are supported by PSDK AppTemplate Application Block.
It reflects possible values in the "Log Output Options": "all
", "debug
",
"trace
", "interaction
", "standard
", and "alarm
".
Enum Constant Summary | |
---|---|
FILELOGGER
Plain log file output target type. This target type is described with separate structure to handle log file name - GFileTargetDescriptor . |
|
MEMORY
Memory mapped output log file target. This type is not supported by Platform SDK for Java. |
|
MESSAGESERVER
Message Server output target type. |
|
STDERR
Console " stderr " output target type. |
|
STDOUT
Console " stdout " output target type. |
Method Summary | |
---|---|
static TargetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TargetType[] |
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 TargetType STDOUT
stdout
" output target type.
public static final TargetType STDERR
stderr
" output target type.
public static final TargetType FILELOGGER
GFileTargetDescriptor
.
public static final TargetType MESSAGESERVER
public static final TargetType MEMORY
Method Detail |
---|
public static TargetType[] values()
for (TargetType c : TargetType.values()) System.out.println(c);
public static TargetType 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
|
Platform SDK Java 8.5 API Reference | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |