Uses of Interface
java.time.chrono.Era

Packages that use Era
Package
Description
Generic API for calendar systems other than the default ISO.
  • Uses of Era in java.time.chrono

    Classes in java.time.chrono that implement Era
    Modifier and Type
    Class
    Description
    enum 
    An era in the Hijrah calendar system.
    enum 
    An era in the ISO calendar system.
    final class 
    An era in the Japanese Imperial calendar system.
    enum 
    An era in the Minguo calendar system.
    enum 
    An era in the Thai Buddhist calendar system.
    Methods in java.time.chrono that return Era
    Modifier and Type
    Method
    Description
    Chronology.eraOf(int eraValue)
    Creates the chronology era object from the numeric value.
    default Era
    ChronoLocalDate.getEra()
    Gets the era, as defined by the chronology.
    Methods in java.time.chrono that return types with arguments of type Era
    Modifier and Type
    Method
    Description
    Chronology.eras()
    Gets the list of eras for the chronology.
    HijrahChronology.eras()
     
    IsoChronology.eras()
     
    JapaneseChronology.eras()
     
    MinguoChronology.eras()
     
    ThaiBuddhistChronology.eras()
     
    Methods in java.time.chrono with parameters of type Era
    Modifier and Type
    Method
    Description
    Chronology.date(Era era, int yearOfEra, int month, int dayOfMonth)
    Obtains a local date in this chronology from the era, year-of-era, month-of-year and day-of-month fields.
    HijrahChronology.date(Era era, int yearOfEra, int month, int dayOfMonth)
    Obtains a local date in Hijrah calendar system from the era, year-of-era, month-of-year and day-of-month fields.
    IsoChronology.date(Era 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.
    JapaneseChronology.date(Era era, int yearOfEra, int month, int dayOfMonth)
    Obtains a local date in Japanese calendar system from the era, year-of-era, month-of-year and day-of-month fields.
    MinguoChronology.date(Era era, int yearOfEra, int month, int dayOfMonth)
    Obtains a local date in Minguo calendar system from the era, year-of-era, month-of-year and day-of-month fields.
    ThaiBuddhistChronology.date(Era era, int yearOfEra, int month, int dayOfMonth)
    Obtains a local date in Thai Buddhist calendar system from the era, year-of-era, month-of-year and day-of-month fields.
    Chronology.dateYearDay(Era era, int yearOfEra, int dayOfYear)
    Obtains a local date in this chronology from the era, year-of-era and day-of-year fields.
    HijrahChronology.dateYearDay(Era era, int yearOfEra, int dayOfYear)
    Obtains a local date in Hijrah calendar system from the era, year-of-era and day-of-year fields.
    IsoChronology.dateYearDay(Era era, int yearOfEra, int dayOfYear)
    Obtains an ISO local date from the era, year-of-era and day-of-year fields.
    JapaneseChronology.dateYearDay(Era era, int yearOfEra, int dayOfYear)
    Obtains a local date in Japanese calendar system from the era, year-of-era and day-of-year fields.
    MinguoChronology.dateYearDay(Era era, int yearOfEra, int dayOfYear)
    Obtains a local date in Minguo calendar system from the era, year-of-era and day-of-year fields.
    ThaiBuddhistChronology.dateYearDay(Era era, int yearOfEra, int dayOfYear)
    Obtains a local date in Thai Buddhist calendar system from the era, year-of-era and day-of-year fields.
    default long
    Chronology.epochSecond(Era era, int yearOfEra, int month, int dayOfMonth, int hour, int minute, int second, ZoneOffset zoneOffset)
    Gets the number of seconds from the epoch of 1970-01-01T00:00:00Z.
    int
    Chronology.prolepticYear(Era era, int yearOfEra)
    Calculates the proleptic-year given the era and year-of-era.
    int
    HijrahChronology.prolepticYear(Era era, int yearOfEra)
     
    int
    IsoChronology.prolepticYear(Era era, int yearOfEra)
     
    int
    JapaneseChronology.prolepticYear(Era era, int yearOfEra)
     
    int
    MinguoChronology.prolepticYear(Era era, int yearOfEra)
     
    int
    ThaiBuddhistChronology.prolepticYear(Era era, int yearOfEra)