|
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<GLogRolloverStrategy.ExpirationStrategy>
com.genesyslab.platform.apptemplate.log4j2plugin.GLogRolloverStrategy.ExpirationStrategy
public static enum GLogRolloverStrategy.ExpirationStrategy
Describes the possible type of log file expiration.
Enum Constant Summary | |
---|---|
NUMBER_OF_FILES
The expiration is based on the number of files with the same log name in the folder. |
|
OFF
The expiration is turned off. |
|
TIME_BASED
The expiration is based on the file age. |
Method Summary | |
---|---|
static GLogRolloverStrategy.ExpirationStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GLogRolloverStrategy.ExpirationStrategy[] |
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 GLogRolloverStrategy.ExpirationStrategy OFF
public static final GLogRolloverStrategy.ExpirationStrategy NUMBER_OF_FILES
"<logfilename>.*.log"
is counted.
public static final GLogRolloverStrategy.ExpirationStrategy TIME_BASED
Method Detail |
---|
public static GLogRolloverStrategy.ExpirationStrategy[] values()
for (GLogRolloverStrategy.ExpirationStrategy c : GLogRolloverStrategy.ExpirationStrategy.values()) System.out.println(c);
public static GLogRolloverStrategy.ExpirationStrategy 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 |