Uses of Class
org.threeten.bp.chrono.ChronoZonedDateTime
Packages that use ChronoZonedDateTime
Package
Description
The main API for dates, times, instants, and durations.
Support for calendar systems other than the default ISO.
-
Uses of ChronoZonedDateTime in org.threeten.bp
Subclasses of ChronoZonedDateTime in org.threeten.bpModifier and TypeClassDescriptionclass
A date-time with a time-zone in the ISO-8601 calendar system, such as2007-12-23T10:15:30+01:00 Europe/Paris
. -
Uses of ChronoZonedDateTime in org.threeten.bp.chrono
Methods in org.threeten.bp.chrono that return ChronoZonedDateTimeModifier and TypeMethodDescriptionabstract ChronoZonedDateTime<D>
Combines this time with a time-zone to create aChronoZonedDateTime
.static ChronoZonedDateTime<?>
ChronoZonedDateTime.from(TemporalAccessor temporal)
Obtains an instance ofChronoZonedDateTime
from a temporal object.ChronoZonedDateTime.minus(long amountToSubtract, TemporalUnit unit)
ChronoZonedDateTime.minus(TemporalAmount amount)
abstract ChronoZonedDateTime<D>
ChronoZonedDateTime.plus(long amountToAdd, TemporalUnit unit)
ChronoZonedDateTime.plus(TemporalAmount amount)
ChronoZonedDateTime.with(TemporalAdjuster adjuster)
abstract ChronoZonedDateTime<D>
ChronoZonedDateTime.with(TemporalField field, long newValue)
abstract ChronoZonedDateTime<D>
ChronoZonedDateTime.withEarlierOffsetAtOverlap()
Returns a copy of this date-time changing the zone offset to the earlier of the two valid offsets at a local time-line overlap.abstract ChronoZonedDateTime<D>
ChronoZonedDateTime.withLaterOffsetAtOverlap()
Returns a copy of this date-time changing the zone offset to the later of the two valid offsets at a local time-line overlap.abstract ChronoZonedDateTime<D>
ChronoZonedDateTime.withZoneSameInstant(ZoneId zoneId)
Returns a copy of this date-time with a different time-zone, retaining the instant.abstract ChronoZonedDateTime<D>
ChronoZonedDateTime.withZoneSameLocal(ZoneId zoneId)
Returns a copy of this ZonedDateTime with a different time-zone, retaining the local date-time if possible.Chronology.zonedDateTime(Instant instant, ZoneId zone)
Obtains a zoned date-time in this chronology from anInstant
.Chronology.zonedDateTime(TemporalAccessor temporal)
Obtains a zoned date-time in this chronology from another temporal object.HijrahChronology.zonedDateTime(Instant instant, ZoneId zone)
HijrahChronology.zonedDateTime(TemporalAccessor temporal)
JapaneseChronology.zonedDateTime(Instant instant, ZoneId zone)
JapaneseChronology.zonedDateTime(TemporalAccessor temporal)
MinguoChronology.zonedDateTime(Instant instant, ZoneId zone)
MinguoChronology.zonedDateTime(TemporalAccessor temporal)
ThaiBuddhistChronology.zonedDateTime(Instant instant, ZoneId zone)
ThaiBuddhistChronology.zonedDateTime(TemporalAccessor temporal)
Methods in org.threeten.bp.chrono that return types with arguments of type ChronoZonedDateTimeModifier and TypeMethodDescriptionstatic Comparator<ChronoZonedDateTime<?>>
ChronoZonedDateTime.timeLineOrder()
Gets a comparator that comparesChronoZonedDateTime
in time-line order ignoring the chronology.Methods in org.threeten.bp.chrono with parameters of type ChronoZonedDateTimeModifier and TypeMethodDescriptionint
ChronoZonedDateTime.compareTo(ChronoZonedDateTime<?> other)
Compares this date-time to another date-time, including the chronology.boolean
ChronoZonedDateTime.isAfter(ChronoZonedDateTime<?> other)
Checks if the instant of this date-time is after that of the specified date-time.boolean
ChronoZonedDateTime.isBefore(ChronoZonedDateTime<?> other)
Checks if the instant of this date-time is before that of the specified date-time.boolean
ChronoZonedDateTime.isEqual(ChronoZonedDateTime<?> other)
Checks if the instant of this date-time is equal to that of the specified date-time.