public static enum HebrewTime.ClockCycle extends Enum<HebrewTime.ClockCycle>
Defines the day-night-cycle associated with sunset and sunrise.
| Modifier and Type | Method and Description |
|---|---|
static HebrewTime.ClockCycle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HebrewTime.ClockCycle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HebrewTime.ClockCycle NIGHT
public static final HebrewTime.ClockCycle DAY
public static HebrewTime.ClockCycle[] values()
for (HebrewTime.ClockCycle c : HebrewTime.ClockCycle.values()) System.out.println(c);
public static HebrewTime.ClockCycle 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 © 2014–2021. All rights reserved.