public static enum Predicates.DayOfWeek extends Enum<Predicates.DayOfWeek>
| Enum Constant and Description |
|---|
FRIDAY |
MONDAY |
SATURDAY |
SUNDAY |
THURSDAY |
TUESDAY |
WEDNESDAY |
| Modifier and Type | Method and Description |
|---|---|
static Predicates.DayOfWeek |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicates.DayOfWeek[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicates.DayOfWeek MONDAY
public static final Predicates.DayOfWeek TUESDAY
public static final Predicates.DayOfWeek WEDNESDAY
public static final Predicates.DayOfWeek THURSDAY
public static final Predicates.DayOfWeek FRIDAY
public static final Predicates.DayOfWeek SATURDAY
public static final Predicates.DayOfWeek SUNDAY
public static Predicates.DayOfWeek[] values()
for (Predicates.DayOfWeek c : Predicates.DayOfWeek.values()) System.out.println(c);
public static Predicates.DayOfWeek 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.