public static enum Predicates.Month extends Enum<Predicates.Month>
| Enum Constant and Description |
|---|
APRIL |
AUGUST |
DECEMBER |
FEBRUARY |
JANUARY |
JULY |
JUNE |
MARCH |
MAY |
NOVEMBER |
OCTOBER |
SEPTEMBER |
| Modifier and Type | Method and Description |
|---|---|
static Predicates.Month |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicates.Month[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicates.Month JANUARY
public static final Predicates.Month FEBRUARY
public static final Predicates.Month MARCH
public static final Predicates.Month APRIL
public static final Predicates.Month MAY
public static final Predicates.Month JUNE
public static final Predicates.Month JULY
public static final Predicates.Month AUGUST
public static final Predicates.Month SEPTEMBER
public static final Predicates.Month OCTOBER
public static final Predicates.Month NOVEMBER
public static final Predicates.Month DECEMBER
public static Predicates.Month[] values()
for (Predicates.Month c : Predicates.Month.values()) System.out.println(c);
public static Predicates.Month 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. All rights reserved.