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.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 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'.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 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.static LocalTimeLocalTime. parse(CharSequence text)Obtains an instance ofLocalTimefrom a text string such as10:15.static LocalTimeLocalTime. parse(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.static LocalTimeDateTimeUtils. toLocalTime(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 TimeDateTimeUtils. toSqlTime(LocalTime time)Converts aLocalTimeto ajava.sql.Time. -
Uses of LocalTime in org.threeten.bp.chrono
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.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<?>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) -
Uses of LocalTime in org.threeten.bp.temporal
Methods 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
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 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.
-