OffsetDate |
LocalDate.atOffset(ZoneOffset offset) |
Returns an offset date formed from this time and the specified offset.
|
OffsetDateTime |
LocalDateTime.atOffset(ZoneOffset offset) |
Returns an offset date-time formed from this date-time and the specified offset.
|
OffsetTime |
LocalTime.atOffset(ZoneOffset offset) |
Returns an offset time formed from this time and the specified offset.
|
int |
ZoneOffset.compareTo(ZoneOffset other) |
Compares this offset to another offset in descending order.
|
static OffsetDate |
OffsetDate.of(int year,
int monthOfYear,
int dayOfMonth,
ZoneOffset offset) |
Obtains an instance of OffsetDate from a year, month and day.
|
static OffsetDate |
OffsetDate.of(int year,
MonthOfYear monthOfYear,
int dayOfMonth,
ZoneOffset offset) |
Obtains an instance of OffsetDate from a year, month and day.
|
static OffsetDate |
OffsetDate.of(DateProvider dateProvider,
ZoneOffset offset) |
Obtains an instance of OffsetDate from a date provider.
|
static OffsetDateTime |
OffsetDateTime.of(int year,
int monthOfYear,
int dayOfMonth,
int hourOfDay,
int minuteOfHour,
int secondOfMinute,
int nanoOfSecond,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month,
day, hour, minute, second and nanosecond.
|
static OffsetDateTime |
OffsetDateTime.of(int year,
int monthOfYear,
int dayOfMonth,
int hourOfDay,
int minuteOfHour,
int secondOfMinute,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month,
day, hour, minute and second, setting the nanosecond to zero.
|
static OffsetDateTime |
OffsetDateTime.of(int year,
int monthOfYear,
int dayOfMonth,
int hourOfDay,
int minuteOfHour,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month,
day, hour and minute, setting the second and nanosecond to zero.
|
static OffsetDateTime |
OffsetDateTime.of(int year,
MonthOfYear monthOfYear,
int dayOfMonth,
int hourOfDay,
int minuteOfHour,
int secondOfMinute,
int nanoOfSecond,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month,
day, hour, minute, second and nanosecond.
|
static OffsetDateTime |
OffsetDateTime.of(int year,
MonthOfYear monthOfYear,
int dayOfMonth,
int hourOfDay,
int minuteOfHour,
int secondOfMinute,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month,
day, hour, minute and second, setting the nanosecond to zero.
|
static OffsetDateTime |
OffsetDateTime.of(int year,
MonthOfYear monthOfYear,
int dayOfMonth,
int hourOfDay,
int minuteOfHour,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month,
day, hour and minute, setting the second and nanosecond to zero.
|
static OffsetDateTime |
OffsetDateTime.of(DateProvider dateProvider,
TimeProvider timeProvider,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from a date, time and zone offset.
|
static OffsetDateTime |
OffsetDateTime.of(DateTimeProvider dateTimeProvider,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from a date-time provider.
|
static OffsetTime |
OffsetTime.of(int hourOfDay,
int minuteOfHour,
int secondOfMinute,
int nanoOfSecond,
ZoneOffset offset) |
Obtains an instance of OffsetTime from an hour, minute, second and nanosecond.
|
static OffsetTime |
OffsetTime.of(int hourOfDay,
int minuteOfHour,
int secondOfMinute,
ZoneOffset offset) |
Obtains an instance of OffsetTime from an hour, minute and second.
|
static OffsetTime |
OffsetTime.of(int hourOfDay,
int minuteOfHour,
ZoneOffset offset) |
Obtains an instance of OffsetTime from an hour and minute.
|
static OffsetTime |
OffsetTime.of(TimeProvider timeProvider,
ZoneOffset offset) |
Obtains an instance of OffsetTime from a time provider.
|
static TimeZone |
TimeZone.of(ZoneOffset offset) |
Obtains an instance of TimeZone representing a fixed time-zone.
|
static OffsetDateTime |
OffsetDateTime.ofEpochSeconds(long epochSeconds,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime using seconds from the
epoch of 1970-01-01T00:00:00Z.
|
static OffsetDate |
OffsetDate.ofInstant(InstantProvider instantProvider,
ZoneOffset offset) |
Obtains an instance of OffsetDate from an InstantProvider .
|
static OffsetDateTime |
OffsetDateTime.ofInstant(InstantProvider instantProvider,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from an InstantProvider .
|
static OffsetTime |
OffsetTime.ofInstant(InstantProvider instantProvider,
ZoneOffset offset) |
Obtains an instance of OffsetTime from an InstantProvider .
|
static OffsetDateTime |
OffsetDateTime.ofMidnight(int year,
int monthOfYear,
int dayOfMonth,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month and
day with the time set to midnight at the start of day.
|
static OffsetDateTime |
OffsetDateTime.ofMidnight(int year,
MonthOfYear monthOfYear,
int dayOfMonth,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from year, month and
day with the time set to midnight at the start of day.
|
static OffsetDateTime |
OffsetDateTime.ofMidnight(DateProvider dateProvider,
ZoneOffset offset) |
Obtains an instance of OffsetDateTime from a date with the
time set to midnight at the start of day.
|
OffsetDate |
OffsetDate.withOffset(ZoneOffset offset) |
Returns a copy of this OffsetDate with the specified offset.
|
OffsetDateTime |
OffsetDateTime.withOffsetSameInstant(ZoneOffset offset) |
Returns a copy of this OffsetDateTime with the specified offset ensuring
that the result is at the same instant.
|
OffsetTime |
OffsetTime.withOffsetSameInstant(ZoneOffset offset) |
Returns a copy of this OffsetTime with the specified offset ensuring
that the result is at the same instant on an implied day.
|
OffsetDateTime |
OffsetDateTime.withOffsetSameLocal(ZoneOffset offset) |
Returns a copy of this OffsetDateTime with the specified offset ensuring
that the result has the same local date-time.
|
OffsetTime |
OffsetTime.withOffsetSameLocal(ZoneOffset offset) |
Returns a copy of this OffsetTime with the specified offset ensuring
that the result has the same local time.
|