Enum TimeOfDay
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
TimeOfDay.Companion
-
Method Summary
Modifier and Type Method Description final Unit
set(LevelAccessor level)
Set this as the time of day for a level. final Unit
set(ServerLevel level)
Set this as the time of day for a ServerLevel. final TimeOfDay
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<TimeOfDay>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final Long
getTime()
final EnumEntries<TimeOfDay>
getEntries()
A utility for setting the time of day without resetting the day counter. -
-
Constructor Detail
-
TimeOfDay
TimeOfDay(Long time)
-
-
Method Detail
-
valueOf
final TimeOfDay valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<TimeOfDay> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<TimeOfDay> getEntries()
A utility for setting the time of day without resetting the day counter.
-
-
-
-