| Package | Description |
|---|---|
| org.threeten.bp |
The main API for dates, times, instants, and durations.
|
| org.threeten.bp.temporal |
Access to date and time using fields and units, plus additional value type classes.
|
| Modifier and Type | Method and Description |
|---|---|
ISOChrono |
LocalDate.getChrono()
Gets the chronology of this date, which is the ISO calendar system.
|
| Modifier and Type | Method and Description |
|---|---|
Era<ISOChrono> |
LocalDate.getEra()
Gets the era applicable at this date.
|
| Modifier and Type | Field and Description |
|---|---|
static ISOChrono |
ISOChrono.INSTANCE
Singleton instance of the ISO chronology.
|
| Modifier and Type | Field and Description |
|---|---|
static Era<ISOChrono> |
ISOChrono.ERA_BCE
The singleton instance for the era BCE - 'Before Current Era'.
|
static Era<ISOChrono> |
ISOChrono.ERA_CE
The singleton instance for the era CE - 'Current Era'.
|
| Modifier and Type | Method and Description |
|---|---|
Era<ISOChrono> |
ISOChrono.eraOf(int eraValue) |
List<Era<ISOChrono>> |
ISOChrono.eras() |
| Modifier and Type | Method and Description |
|---|---|
LocalDate |
ISOChrono.date(Era<ISOChrono> era,
int yearOfEra,
int month,
int dayOfMonth)
Obtains an ISO local date from the era, year-of-era, month-of-year
and day-of-month fields.
|
LocalDate |
ISOChrono.dateYearDay(Era<ISOChrono> era,
int yearOfEra,
int dayOfYear)
Obtains an ISO local date from the era, year-of-era and day-of-year fields.
|
int |
ISOChrono.prolepticYear(Era<ISOChrono> era,
int yearOfEra) |
Copyright © 2007-2013 ThreeTen.org. All Rights Reserved.