Uses of Class
java.util.Calendar.Builder
Package
Description
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
-
Uses of Calendar.Builder in java.util
Modifier and TypeMethodDescriptionCalendar.Builder.set
(int field, int value) Sets thefield
parameter to the givenvalue
.Calendar.Builder.setCalendarType
(String type) Sets the calendar type parameter to the giventype
.Calendar.Builder.setDate
(int year, int month, int dayOfMonth) Sets the date field parameters to the values given byyear
,month
, anddayOfMonth
.Calendar.Builder.setFields
(int... fieldValuePairs) Sets field parameters to their values given byfieldValuePairs
that are pairs of a field and its value.Calendar.Builder.setInstant
(long instant) Sets the instant parameter to the giveninstant
value that is a millisecond offset from the Epoch.Calendar.Builder.setInstant
(Date instant) Sets the instant parameter to theinstant
value given by aDate
.Calendar.Builder.setLenient
(boolean lenient) Sets the lenient mode parameter to the value given bylenient
.Sets the locale parameter to the givenlocale
.Calendar.Builder.setTimeOfDay
(int hourOfDay, int minute, int second) Sets the time of day field parameters to the values given byhourOfDay
,minute
, andsecond
.Calendar.Builder.setTimeOfDay
(int hourOfDay, int minute, int second, int millis) Sets the time of day field parameters to the values given byhourOfDay
,minute
,second
, andmillis
.Calendar.Builder.setTimeZone
(TimeZone zone) Sets the time zone parameter to the givenzone
.Calendar.Builder.setWeekDate
(int weekYear, int weekOfYear, int dayOfWeek) Sets the week-based date parameters to the values with the given date specifiers - week year, week of year, and day of week.Calendar.Builder.setWeekDefinition
(int firstDayOfWeek, int minimalDaysInFirstWeek) Sets the week definition parameters to the values given byfirstDayOfWeek
andminimalDaysInFirstWeek
that are used to determine the first week of a year.