public enum CronMonth extends Enum<CronMonth>
| Enum Constant and Description |
|---|
APR |
AUG |
DEC |
FEB |
INVALID |
JAN |
JUL |
JUN |
MAR |
MAY |
NOV |
OCT |
SEP |
| Modifier and Type | Method and Description |
|---|---|
static CronMonth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CronMonth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CronMonth INVALID
public static final CronMonth JAN
public static final CronMonth FEB
public static final CronMonth MAR
public static final CronMonth APR
public static final CronMonth MAY
public static final CronMonth JUN
public static final CronMonth JUL
public static final CronMonth AUG
public static final CronMonth SEP
public static final CronMonth OCT
public static final CronMonth NOV
public static final CronMonth DEC
public static CronMonth[] values()
for (CronMonth c : CronMonth.values()) System.out.println(c);
public static CronMonth 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 © 2017–2019. All rights reserved.