Uses of Class
org.threeten.bp.LocalTime
-
Packages that use LocalTime Package Description org.threeten.bp The main API for dates, times, instants, and durations.org.threeten.bp.chrono Support for calendar systems other than the default ISO.org.threeten.bp.format Provides classes to print and parse dates and times.org.threeten.bp.temporal Access to date and time using fields and units.org.threeten.bp.zone Support for time-zones and their rules. -
-
Uses of LocalTime in org.threeten.bp
Fields in org.threeten.bp declared as LocalTime Modifier and Type Field Description private static LocalTime[]LocalTime. HOURSConstants for the local time of each hour.static LocalTimeLocalTime. MAXThe maximum supportedLocalTime, '23:59:59.999999999'.static LocalTimeLocalTime. MIDNIGHTThe time of midnight at the start of the day, '00:00'.static LocalTimeLocalTime. MINThe minimum supportedLocalTime, '00:00'.static LocalTimeLocalTime. NOONThe time of noon in the middle of the day, '12:00'.private LocalTimeLocalDateTime. timeThe time part.private LocalTimeOffsetTime. timeThe local date-time.Fields in org.threeten.bp with type parameters of type LocalTime Modifier and Type Field Description static TemporalQuery<LocalTime>LocalTime. FROMSimulate JDK 8 method reference LocalTime::from.Methods in org.threeten.bp that return LocalTime Modifier and Type Method Description private static LocalTimeLocalTime. create(int hour, int minute, int second, int nanoOfSecond)Creates a local time from the hour, minute, second and nanosecond fields.static LocalTimeLocalTime. from(TemporalAccessor temporal)Obtains an instance ofLocalTimefrom a temporal object.LocalTimeLocalTime. minus(long amountToSubtract, TemporalUnit unit)Returns a copy of this time with the specified period subtracted.LocalTimeLocalTime. minus(TemporalAmount amount)Returns a copy of this time with the specified period subtracted.LocalTimeLocalTime. minusHours(long hoursToSubtract)Returns a copy of thisLocalTimewith the specified period in hours subtracted.LocalTimeLocalTime. minusMinutes(long minutesToSubtract)Returns a copy of thisLocalTimewith the specified period in minutes subtracted.LocalTimeLocalTime. minusNanos(long nanosToSubtract)Returns a copy of thisLocalTimewith the specified period in nanoseconds subtracted.LocalTimeLocalTime. minusSeconds(long secondsToSubtract)Returns a copy of thisLocalTimewith the specified period in seconds subtracted.static LocalTimeLocalTime. now()Obtains the current time from the system clock in the default time-zone.static LocalTimeLocalTime. now(Clock clock)Obtains the current time from the specified clock.static LocalTimeLocalTime. now(ZoneId zone)Obtains the current time from the system clock in the specified time-zone.static LocalTimeLocalTime. of(int hour, int minute)Obtains an instance ofLocalTimefrom an hour and minute.static LocalTimeLocalTime. of(int hour, int minute, int second)Obtains an instance ofLocalTimefrom an hour, minute and second.static LocalTimeLocalTime. of(int hour, int minute, int second, int nanoOfSecond)Obtains an instance ofLocalTimefrom an hour, minute, second and nanosecond.static LocalTimeLocalTime. ofNanoOfDay(long nanoOfDay)Obtains an instance ofLocalTimefrom a nanos-of-day value.static LocalTimeLocalTime. ofSecondOfDay(long secondOfDay)Obtains an instance ofLocalTimefrom a second-of-day value.(package private) static LocalTimeLocalTime. ofSecondOfDay(long secondOfDay, int nanoOfSecond)Obtains an instance ofLocalTimefrom a second-of-day value, with associated nanos of second.static LocalTimeLocalTime. parse(java.lang.CharSequence text)Obtains an instance ofLocalTimefrom a text string such as10:15.static LocalTimeLocalTime. parse(java.lang.CharSequence text, DateTimeFormatter formatter)Obtains an instance ofLocalTimefrom a text string using a specific formatter.LocalTimeLocalTime. plus(long amountToAdd, TemporalUnit unit)Returns a copy of this time with the specified period added.LocalTimeLocalTime. plus(TemporalAmount amount)Returns a copy of this date with the specified period added.LocalTimeLocalTime. plusHours(long hoursToAdd)Returns a copy of thisLocalTimewith the specified period in hours added.LocalTimeLocalTime. plusMinutes(long minutesToAdd)Returns a copy of thisLocalTimewith the specified period in minutes added.LocalTimeLocalTime. plusNanos(long nanosToAdd)Returns a copy of thisLocalTimewith the specified period in nanoseconds added.LocalTimeLocalTime. plusSeconds(long secondstoAdd)Returns a copy of thisLocalTimewith the specified period in seconds added.(package private) static LocalTimeLocalTime. readExternal(java.io.DataInput in)static LocalTimeDateTimeUtils. toLocalTime(java.sql.Time sqlTime)Converts ajava.sql.Timeto aLocalTime.LocalTimeLocalDateTime. toLocalTime()Gets theLocalTimepart of this date-time.LocalTimeOffsetDateTime. toLocalTime()Gets theLocalTimepart of this date-time.LocalTimeOffsetTime. toLocalTime()Gets theLocalTimepart of this date-time.LocalTimeZonedDateTime. toLocalTime()Gets theLocalTimepart of this date-time.LocalTimeLocalTime. truncatedTo(TemporalUnit unit)Returns a copy of thisLocalTimewith the time truncated.LocalTimeLocalTime. with(TemporalAdjuster adjuster)Returns an adjusted copy of this time.LocalTimeLocalTime. with(TemporalField field, long newValue)Returns a copy of this time with the specified field set to a new value.LocalTimeLocalTime. withHour(int hour)Returns a copy of thisLocalTimewith the hour-of-day value altered.LocalTimeLocalTime. withMinute(int minute)Returns a copy of thisLocalTimewith the minute-of-hour value altered.LocalTimeLocalTime. withNano(int nanoOfSecond)Returns a copy of thisLocalTimewith the nano-of-second value altered.LocalTimeLocalTime. withSecond(int second)Returns a copy of thisLocalTimewith the second-of-minute value altered.Methods in org.threeten.bp with parameters of type LocalTime Modifier and Type Method Description LocalDateTimeLocalDate. atTime(LocalTime time)Combines this date with a time to create aLocalDateTime.intLocalTime. compareTo(LocalTime other)Compares thisLocalTimeto another time.booleanLocalTime. isAfter(LocalTime other)Checks if thisLocalTimeis after the specified time.booleanLocalTime. isBefore(LocalTime other)Checks if thisLocalTimeis before the specified time.static LocalDateTimeLocalDateTime. of(LocalDate date, LocalTime time)Obtains an instance ofLocalDateTimefrom a date and time.static OffsetDateTimeOffsetDateTime. of(LocalDate date, LocalTime time, ZoneOffset offset)Obtains an instance ofOffsetDateTimefrom a date, time and offset.static OffsetTimeOffsetTime. of(LocalTime time, ZoneOffset offset)Obtains an instance ofOffsetTimefrom a local time and an offset.static ZonedDateTimeZonedDateTime. of(LocalDate date, LocalTime time, ZoneId zone)Obtains an instance ofZonedDateTimefrom a local date and time.static java.sql.TimeDateTimeUtils. toSqlTime(LocalTime time)Converts aLocalTimeto ajava.sql.Time.private LocalDateTimeLocalDateTime. with(LocalDate newDate, LocalTime newTime)Returns a copy of this date-time with the new date and time, checking to see if a new object is in fact required.private OffsetTimeOffsetTime. with(LocalTime time, ZoneOffset offset)Returns a new time based on this one, returningthiswhere possible.Constructors in org.threeten.bp with parameters of type LocalTime Constructor Description LocalDateTime(LocalDate date, LocalTime time)Constructor.OffsetTime(LocalTime time, ZoneOffset offset)Constructor. -
Uses of LocalTime in org.threeten.bp.chrono
Fields in org.threeten.bp.chrono declared as LocalTime Modifier and Type Field Description private LocalTimeChronoLocalDateTimeImpl. timeThe time part.Methods in org.threeten.bp.chrono that return LocalTime Modifier and Type Method Description abstract LocalTimeChronoLocalDateTime. toLocalTime()Gets the local time part of this date-time.LocalTimeChronoLocalDateTimeImpl. toLocalTime()LocalTimeChronoZonedDateTime. toLocalTime()Gets the local time part of this date-time.Methods in org.threeten.bp.chrono with parameters of type LocalTime Modifier and Type Method Description ChronoLocalDateTime<?>ChronoDateImpl. atTime(LocalTime localTime)ChronoLocalDateTime<?>ChronoLocalDate. atTime(LocalTime localTime)Combines this date with a time to create aChronoLocalDateTime.ChronoLocalDateTime<HijrahDate>HijrahDate. atTime(LocalTime localTime)ChronoLocalDateTime<JapaneseDate>JapaneseDate. atTime(LocalTime localTime)ChronoLocalDateTime<MinguoDate>MinguoDate. atTime(LocalTime localTime)ChronoLocalDateTime<ThaiBuddhistDate>ThaiBuddhistDate. atTime(LocalTime localTime)(package private) static <R extends ChronoLocalDate>
ChronoLocalDateTimeImpl<R>ChronoLocalDateTimeImpl. of(R date, LocalTime time)Obtains an instance ofChronoLocalDateTimefrom a date and time.private ChronoLocalDateTimeImpl<D>ChronoLocalDateTimeImpl. with(Temporal newDate, LocalTime newTime)Returns a copy of this date-time with the new date and time, checking to see if a new object is in fact required.Constructors in org.threeten.bp.chrono with parameters of type LocalTime Constructor Description ChronoLocalDateTimeImpl(D date, LocalTime time)Constructor. -
Uses of LocalTime in org.threeten.bp.format
Fields in org.threeten.bp.format declared as LocalTime Modifier and Type Field Description (package private) LocalTimeDateTimeBuilder. timeThe time.Methods in org.threeten.bp.format with parameters of type LocalTime Modifier and Type Method Description (package private) voidDateTimeBuilder. addObject(LocalTime time)private voidDateTimeBuilder. resolveMakeChanges(TemporalField targetField, LocalTime time) -
Uses of LocalTime in org.threeten.bp.temporal
Fields in org.threeten.bp.temporal with type parameters of type LocalTime Modifier and Type Field Description (package private) static TemporalQuery<LocalTime>TemporalQueries. LOCAL_TIMEMethods in org.threeten.bp.temporal that return types with arguments of type LocalTime Modifier and Type Method Description static TemporalQuery<LocalTime>TemporalQueries. localTime()A query forLocalTimereturning null if not found. -
Uses of LocalTime in org.threeten.bp.zone
Fields in org.threeten.bp.zone declared as LocalTime Modifier and Type Field Description (package private) LocalTimeTzdbZoneRulesCompiler.TZDBMonthDayTime. timeThe time of the cutover.private LocalTimeZoneOffsetTransitionRule. timeThe cutover time in the 'before' offset.private LocalTimeZoneRulesBuilder.TZRule. timeThe local time.Methods in org.threeten.bp.zone that return LocalTime Modifier and Type Method Description LocalTimeZoneOffsetTransitionRule. getLocalTime()Gets the local time of day of the transition which must be checked withZoneOffsetTransitionRule.isMidnightEndOfDay().Methods in org.threeten.bp.zone with parameters of type LocalTime Modifier and Type Method Description (package private) voidZoneRulesBuilder.TZWindow. addRule(int startYear, int endYear, Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, int adjustDays, ZoneOffsetTransitionRule.TimeDefinition timeDefinition, int savingAmountSecs)Adds a rule to the current window.ZoneRulesBuilderZoneRulesBuilder. addRuleToWindow(int startYear, int endYear, Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, boolean timeEndOfDay, ZoneOffsetTransitionRule.TimeDefinition timeDefinition, int savingAmountSecs)Adds a multi-year transition rule to the current window.(package private) ZoneRulesBuilderZoneRulesBuilder. addRuleToWindow(int startYear, int endYear, Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, int adjustDays, ZoneOffsetTransitionRule.TimeDefinition timeDefinition, int savingAmountSecs)ZoneRulesBuilderZoneRulesBuilder. addRuleToWindow(int year, Month month, int dayOfMonthIndicator, LocalTime time, boolean timeEndOfDay, ZoneOffsetTransitionRule.TimeDefinition timeDefinition, int savingAmountSecs)Adds a single transition rule to the current window.static ZoneOffsetTransitionRuleZoneOffsetTransitionRule. of(Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, boolean timeEndOfDay, ZoneOffsetTransitionRule.TimeDefinition timeDefnition, ZoneOffset standardOffset, ZoneOffset offsetBefore, ZoneOffset offsetAfter)Obtains an instance defining the yearly rule to create transitions between two offsets.Constructors in org.threeten.bp.zone with parameters of type LocalTime Constructor Description TZRule(int year, Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, int adjustDays, ZoneOffsetTransitionRule.TimeDefinition timeDefinition, int savingAfterSecs)Constructor.ZoneOffsetTransitionRule(Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, int adjustDays, ZoneOffsetTransitionRule.TimeDefinition timeDefnition, ZoneOffset standardOffset, ZoneOffset offsetBefore, ZoneOffset offsetAfter)Creates an instance defining the yearly rule to create transitions between two offsets.
-