Package | Description |
---|---|
java.time.chrono |
Generic API for calendar systems other than the default ISO.
|
Modifier and Type | Method and Description |
---|---|
HijrahDate |
HijrahChronology.date(Era era,
int yearOfEra,
int month,
int dayOfMonth) |
HijrahDate |
HijrahChronology.date(int prolepticYear,
int month,
int dayOfMonth) |
HijrahDate |
HijrahChronology.date(TemporalAccessor temporal) |
HijrahDate |
HijrahChronology.dateNow() |
HijrahDate |
HijrahChronology.dateNow(Clock clock) |
HijrahDate |
HijrahChronology.dateNow(ZoneId zone) |
HijrahDate |
HijrahChronology.dateYearDay(Era era,
int yearOfEra,
int dayOfYear) |
HijrahDate |
HijrahChronology.dateYearDay(int prolepticYear,
int dayOfYear) |
static HijrahDate |
HijrahDate.from(TemporalAccessor temporal)
Obtains a
HijrahDate from a temporal object. |
HijrahDate |
HijrahDate.minus(long amountToSubtract,
TemporalUnit unit) |
HijrahDate |
HijrahDate.minus(TemporalAmount amount)
Returns an object of the same type as this object with an amount subtracted.
|
static HijrahDate |
HijrahDate.now()
Obtains the current
HijrahDate from the system clock in the default time-zone. |
static HijrahDate |
HijrahDate.now(Clock clock)
Obtains the current
HijrahDate from the specified clock. |
static HijrahDate |
HijrahDate.now(ZoneId zone)
Obtains the current
HijrahDate from the system clock in the specified time-zone. |
static HijrahDate |
HijrahDate.of(int prolepticYear,
int month,
int dayOfMonth)
Obtains a
HijrahDate representing a date in the Hijrah calendar
system from the proleptic-year, month-of-year and day-of-month fields. |
HijrahDate |
HijrahDate.plus(long amountToAdd,
TemporalUnit unit) |
HijrahDate |
HijrahDate.plus(TemporalAmount amount)
Returns an object of the same type as this object with an amount added.
|
HijrahDate |
HijrahDate.with(TemporalAdjuster adjuster)
Returns an adjusted object of the same type as this object with the adjustment made.
|
HijrahDate |
HijrahDate.with(TemporalField field,
long newValue) |
Modifier and Type | Method and Description |
---|---|
ChronoLocalDateTime<HijrahDate> |
HijrahDate.atTime(LocalTime localTime) |
ChronoLocalDateTime<HijrahDate> |
HijrahChronology.localDateTime(TemporalAccessor temporal) |
ChronoZonedDateTime<HijrahDate> |
HijrahChronology.zonedDateTime(Instant instant,
ZoneId zone) |
ChronoZonedDateTime<HijrahDate> |
HijrahChronology.zonedDateTime(TemporalAccessor temporal) |
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, 2013, Oracle and/or its affiliates. All rights reserved.
DRAFT internal-0