Uses of Enum Class
net.time4j.history.HistoricEra
Packages that use HistoricEra
Package
Description
Support for various regional calendars.
Support for the historical ancestors of modern ISO-8601-standard.
-
Uses of HistoricEra in net.time4j.calendar
Fields in net.time4j.calendar with type parameters of type HistoricEraModifier and TypeFieldDescriptionstatic ChronoElement<HistoricEra>HistoricCalendar.ERARepresents the historic era.static ChronoElement<HistoricEra>JulianCalendar.ERARepresents the Julian era.Methods in net.time4j.calendar that return HistoricEraModifier and TypeMethodDescriptionHistoricCalendar.getEra()Yields the historic era.JulianCalendar.getEra()Yields the Julian era.Methods in net.time4j.calendar with parameters of type HistoricEraModifier and TypeMethodDescriptionstatic booleanJulianCalendar.isValid(HistoricEra era, int yearOfEra, int month, int dayOfMonth)Queries if given parameter values form a well defined calendar date.static HistoricCalendarHistoricCalendar.of(ChronoHistory history, HistoricEra era, int relatedStandardYear, int historicMonth, int historicDayOfMonth)Constructs a new historic calendar.static HistoricCalendarHistoricCalendar.of(ChronoHistory history, HistoricEra era, int yearOfEra, YearDefinition yearDefinition, int historicMonth, int historicDayOfMonth)Constructs a new historic calendar.static JulianCalendarJulianCalendar.of(HistoricEra era, int yearOfEra, int month, int dayOfMonth)Creates a new instance of a Julian calendar date.static JulianCalendarJulianCalendar.of(HistoricEra era, int yearOfEra, Month month, int dayOfMonth)Creates a new instance of a Julian calendar date. -
Uses of HistoricEra in net.time4j.history
Methods in net.time4j.history that return HistoricEraModifier and TypeMethodDescriptionHistoricDate.getEra()Yields the historic era.static HistoricEraReturns the enum constant of this class with the specified name.static HistoricEra[]HistoricEra.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in net.time4j.history that return types with arguments of type HistoricEraMethods in net.time4j.history with parameters of type HistoricEraModifier and TypeMethodDescriptionChronoHistory.getBeginOfYear(HistoricEra era, int yearOfEra)Determines the date of New Year.intChronoHistory.getLengthOfYear(HistoricEra era, int yearOfEra)Determines the length of given historic year in days.static HistoricDateHistoricDate.of(HistoricEra era, int yearOfEra, int month, int dom)Equivalent toHistoricDate.of(era, yearOfEra, month, dom, YearDefinition.DUAL_DATING, NewYearRule.BEGIN_OF_JANUARY.until(Integer.MAX_VALUE)).static HistoricDateHistoricDate.of(HistoricEra era, int yearOfEra, int month, int dom, YearDefinition yearDefinition, NewYearStrategy newYearStrategy)Constructs a new tuple of given historic chronological components.