public enum RolloverFrequency extends java.lang.Enum<RolloverFrequency>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static RolloverFrequency |
valueOf(java.lang.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.
|
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
public static RolloverFrequency[] values()
for (RolloverFrequency c : RolloverFrequency.values()) System.out.println(c);
public static RolloverFrequency 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 namejava.lang.NullPointerException - if the argument is null