|
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<GLogSegmentationStrategy.SegmentationStrategy>
com.genesyslab.platform.apptemplate.log4j2plugin.GLogSegmentationStrategy.SegmentationStrategy
public static enum GLogSegmentationStrategy.SegmentationStrategy
Describes the possible type of log file segmentation.
Enum Constant Summary | |
---|---|
OFF
No segmentation of log file. |
|
SIZE_KB
The log file is divided into segments by size, which length (in KB). |
|
SIZE_MB
The log file is divided into segments by size, which length (in MB). |
|
TIME_BASED
The log file is divided into segments by time, the old segment is closed and new is started each N hours. |
Method Summary | |
---|---|
static GLogSegmentationStrategy.SegmentationStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GLogSegmentationStrategy.SegmentationStrategy[] |
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 GLogSegmentationStrategy.SegmentationStrategy OFF
public static final GLogSegmentationStrategy.SegmentationStrategy SIZE_KB
public static final GLogSegmentationStrategy.SegmentationStrategy SIZE_MB
public static final GLogSegmentationStrategy.SegmentationStrategy TIME_BASED
N
hours.
Method Detail |
---|
public static GLogSegmentationStrategy.SegmentationStrategy[] values()
for (GLogSegmentationStrategy.SegmentationStrategy c : GLogSegmentationStrategy.SegmentationStrategy.values()) System.out.println(c);
public static GLogSegmentationStrategy.SegmentationStrategy 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 |