Uses of Enum
org.threeten.extra.Quarter

Packages that use Quarter
Package
Description
Value types and utilities that extend java.time.*.
  • Uses of Quarter in org.threeten.extra

    Methods in org.threeten.extra that return Quarter
    Modifier and Type
    Method
    Description
    static Quarter
    Quarter.from(TemporalAccessor temporal)
    Obtains an instance of Quarter from a temporal object.
    YearQuarter.getQuarter()
    Gets the quarter-of-year field using the Quarter enum.
    Quarter.minus(long quarters)
    Returns the quarter that is the specified number of quarters before this one.
    static Quarter
    Quarter.of(int quarterOfYear)
    Obtains an instance of Quarter from an int value.
    static Quarter
    Quarter.ofMonth(int monthOfYear)
    Obtains an instance of Quarter from a month-of-year.
    Quarter.plus(long quarters)
    Returns the quarter that is the specified number of quarters after this one.
    static Quarter
    Quarter.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Quarter[]
    Quarter.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.threeten.extra with parameters of type Quarter
    Modifier and Type
    Method
    Description
    YearQuarter.of(int year, Quarter quarter)
    Obtains an instance of YearQuarter from a year and quarter.
    YearQuarter.of(Year year, Quarter quarter)
    Obtains an instance of YearQuarter from a year and quarter.