|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RolloverFrequency>
org.apache.logging.log4j.core.appender.rolling.RolloverFrequency
public enum RolloverFrequency
Enumeration of rollover frequency values.
Enum Constant Summary | |
---|---|
ANNUALLY
Rollover annually. |
|
DAILY
Rollover daily. |
|
EVERY_MILLISECOND
Rollover every millisecond. |
|
EVERY_MINUTE
Rollover every minute. |
|
EVERY_SECOND
Rollover every second. |
|
HOURLY
Rollover every hour. |
|
MONTHLY
Rollover monthly. |
|
WEEKLY
Rollover weekly. |
Method Summary | |
---|---|
static RolloverFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RolloverFrequency[] |
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 RolloverFrequency ANNUALLY
public static final RolloverFrequency MONTHLY
public static final RolloverFrequency WEEKLY
public static final RolloverFrequency DAILY
public static final RolloverFrequency HOURLY
public static final RolloverFrequency EVERY_MINUTE
public static final RolloverFrequency EVERY_SECOND
public static final RolloverFrequency EVERY_MILLISECOND
Method Detail |
---|
public static RolloverFrequency[] values()
for (RolloverFrequency c : RolloverFrequency.values()) System.out.println(c);
public static RolloverFrequency valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |