public enum CronNicknames extends Enum<CronNicknames>
| Enum Constant and Description |
|---|
ANNUALLY |
DAILY |
HOURLY |
MIDNIGHT |
MONTHLY |
REBOOT |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static CronNicknames |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CronNicknames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CronNicknames YEARLY
public static final CronNicknames ANNUALLY
public static final CronNicknames MONTHLY
public static final CronNicknames WEEKLY
public static final CronNicknames DAILY
public static final CronNicknames MIDNIGHT
public static final CronNicknames HOURLY
public static final CronNicknames REBOOT
public static CronNicknames[] values()
for (CronNicknames c : CronNicknames.values()) System.out.println(c);
public static CronNicknames valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.