Package | Description |
---|---|
java.time |
The main API for dates, times, instants, and durations.
|
java.time.chrono |
Generic API for calendar systems other than the default ISO.
|
Modifier and Type | Class and Description |
---|---|
class |
LocalDateTime
A date-time without a time-zone in the ISO-8601 calendar system,
such as
2007-12-03T10:15:30 . |
Modifier and Type | Method and Description |
---|---|
int |
LocalDateTime.compareTo(ChronoLocalDateTime<?> other)
Compares this date-time to another date-time.
|
boolean |
LocalDateTime.isAfter(ChronoLocalDateTime<?> other)
Checks if this date-time is after the specified date-time.
|
boolean |
LocalDateTime.isBefore(ChronoLocalDateTime<?> other)
Checks if this date-time is before the specified date-time.
|
boolean |
LocalDateTime.isEqual(ChronoLocalDateTime<?> other)
Checks if this date-time is equal to the specified date-time.
|
Modifier and Type | Method and Description |
---|---|
ChronoLocalDateTime<HijrahDate> |
HijrahDate.atTime(LocalTime localTime) |
default ChronoLocalDateTime<?> |
ChronoLocalDate.atTime(LocalTime localTime)
Combines this date with a time to create a
ChronoLocalDateTime . |
ChronoLocalDateTime<MinguoDate> |
MinguoDate.atTime(LocalTime localTime) |
ChronoLocalDateTime<JapaneseDate> |
JapaneseDate.atTime(LocalTime localTime) |
ChronoLocalDateTime<ThaiBuddhistDate> |
ThaiBuddhistDate.atTime(LocalTime localTime) |
static ChronoLocalDateTime<?> |
ChronoLocalDateTime.from(TemporalAccessor temporal)
Obtains an instance of
ChronoLocalDateTime from a temporal object. |
default ChronoLocalDateTime<? extends ChronoLocalDate> |
Chronology.localDateTime(TemporalAccessor temporal)
Obtains a local date-time in this chronology from another temporal object.
|
ChronoLocalDateTime<ThaiBuddhistDate> |
ThaiBuddhistChronology.localDateTime(TemporalAccessor temporal) |
ChronoLocalDateTime<JapaneseDate> |
JapaneseChronology.localDateTime(TemporalAccessor temporal) |
ChronoLocalDateTime<MinguoDate> |
MinguoChronology.localDateTime(TemporalAccessor temporal) |
ChronoLocalDateTime<HijrahDate> |
HijrahChronology.localDateTime(TemporalAccessor temporal) |
default ChronoLocalDateTime<D> |
ChronoLocalDateTime.minus(long amountToSubtract,
TemporalUnit unit)
Returns an object of the same type as this object with the specified period subtracted.
|
default ChronoLocalDateTime<D> |
ChronoLocalDateTime.minus(TemporalAmount amount)
Returns an object of the same type as this object with an amount subtracted.
|
ChronoLocalDateTime<D> |
ChronoLocalDateTime.plus(long amountToAdd,
TemporalUnit unit)
Returns an object of the same type as this object with the specified period added.
|
default ChronoLocalDateTime<D> |
ChronoLocalDateTime.plus(TemporalAmount amount)
Returns an object of the same type as this object with an amount added.
|
ChronoLocalDateTime<D> |
ChronoZonedDateTime.toLocalDateTime()
Gets the local date-time part of this date-time.
|
default ChronoLocalDateTime<D> |
ChronoLocalDateTime.with(TemporalAdjuster adjuster)
Returns an adjusted object of the same type as this object with the adjustment made.
|
ChronoLocalDateTime<D> |
ChronoLocalDateTime.with(TemporalField field,
long newValue)
Returns an object of the same type as this object with the specified field altered.
|
Modifier and Type | Method and Description |
---|---|
static Comparator<ChronoLocalDateTime<?>> |
ChronoLocalDateTime.timeLineOrder()
Gets a comparator that compares
ChronoLocalDateTime in
time-line order ignoring the chronology. |
Modifier and Type | Method and Description |
---|---|
default int |
ChronoLocalDateTime.compareTo(ChronoLocalDateTime<?> other)
Compares this date-time to another date-time, including the chronology.
|
default boolean |
ChronoLocalDateTime.isAfter(ChronoLocalDateTime<?> other)
Checks if this date-time is after the specified date-time ignoring the chronology.
|
default boolean |
ChronoLocalDateTime.isBefore(ChronoLocalDateTime<?> other)
Checks if this date-time is before the specified date-time ignoring the chronology.
|
default boolean |
ChronoLocalDateTime.isEqual(ChronoLocalDateTime<?> other)
Checks if this date-time is equal to the specified date-time ignoring the chronology.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.