- java.lang.Object
-
- java.lang.Enum<Quarter>
-
- org.threeten.extra.Quarter
-
- All Implemented Interfaces:
Serializable
,Comparable<Quarter>
,TemporalAccessor
,TemporalAdjuster
public enum Quarter extends Enum<Quarter> implements TemporalAccessor, TemporalAdjuster
A quarter-of-year, such as 'Q2'.Quarter
is an enum representing the 4 quarters of the year - Q1, Q2, Q3 and Q4. These are defined as January to March, April to June, July to September and October to December.The
int
value follows the quarter, from 1 (Q1) to 4 (Q4). It is recommended that applications use the enum rather than theint
value to ensure code clarity.Do not use
ordinal()
to obtain the numeric representation ofQuarter
. UsegetValue()
instead.This enum represents a common concept that is found in many calendar systems. As such, this enum may be used by any calendar system that has the quarter-of-year concept defined exactly equivalent to the ISO calendar system.
Implementation Requirements:
This is an immutable and thread-safe enum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Q1
The singleton instance for the first quarter-of-year, from January to March.Q2
The singleton instance for the second quarter-of-year, from April to June.Q3
The singleton instance for the third quarter-of-year, from July to September.Q4
The singleton instance for the fourth quarter-of-year, from October to December.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Temporal
adjustInto(Temporal temporal)
Adjusts the specified temporal object to have this quarter-of-year.Month
firstMonth()
Gets the first of the three months that this quarter refers to.static Quarter
from(TemporalAccessor temporal)
Obtains an instance ofQuarter
from a temporal object.int
get(TemporalField field)
Gets the value of the specified field from this quarter-of-year as anint
.String
getDisplayName(TextStyle style, Locale locale)
Gets the textual representation, such as 'Q1' or '4th quarter'.long
getLong(TemporalField field)
Gets the value of the specified field from this quarter-of-year as along
.int
getValue()
Gets the quarter-of-yearint
value.boolean
isSupported(TemporalField field)
Checks if the specified field is supported.int
length(boolean leapYear)
Gets the length of this quarter in days.Quarter
minus(long quarters)
Returns the quarter that is the specified number of quarters before this one.static Quarter
of(int quarterOfYear)
Obtains an instance ofQuarter
from anint
value.static Quarter
ofMonth(int monthOfYear)
Obtains an instance ofQuarter
from a month-of-year.Quarter
plus(long quarters)
Returns the quarter that is the specified number of quarters after this one.<R> R
query(TemporalQuery<R> query)
Queries this quarter-of-year using the specified query.ValueRange
range(TemporalField field)
Gets the range of valid values for the specified field.static Quarter
valueOf(String name)
Returns the enum constant of this type with the specified name.static Quarter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Q1
public static final Quarter Q1
The singleton instance for the first quarter-of-year, from January to March. This has the numeric value of1
.
-
Q2
public static final Quarter Q2
The singleton instance for the second quarter-of-year, from April to June. This has the numeric value of2
.
-
Q3
public static final Quarter Q3
The singleton instance for the third quarter-of-year, from July to September. This has the numeric value of3
.
-
Q4
public static final Quarter Q4
The singleton instance for the fourth quarter-of-year, from October to December. This has the numeric value of4
.
-
-
Method Detail
-
values
public static Quarter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Quarter c : Quarter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Quarter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
of
public static Quarter of(int quarterOfYear)
Obtains an instance ofQuarter
from anint
value.Quarter
is an enum representing the 4 quarters of the year. This factory allows the enum to be obtained from theint
value. Theint
value follows the quarter, from 1 (Q1) to 4 (Q4).- Parameters:
quarterOfYear
- the quarter-of-year to represent, from 1 (Q1) to 4 (Q4)- Returns:
- the quarter-of-year, not null
- Throws:
DateTimeException
- if the quarter-of-year is invalid
-
ofMonth
public static Quarter ofMonth(int monthOfYear)
Obtains an instance ofQuarter
from a month-of-year.Quarter
is an enum representing the 4 quarters of the year. This factory allows the enum to be obtained from theMonth
value.January to March are Q1, April to June are Q2, July to September are Q3 and October to December are Q4.
- Parameters:
monthOfYear
- the month-of-year to convert from, from 1 to 12- Returns:
- the quarter-of-year, not null
- Throws:
DateTimeException
- if the month-of-year is invalid
-
from
public static Quarter from(TemporalAccessor temporal)
Obtains an instance ofQuarter
from a temporal object.This obtains a quarter based on the specified temporal. A
TemporalAccessor
represents an arbitrary set of date and time information, which this factory converts to an instance ofQuarter
.The conversion extracts the
QUARTER_OF_YEAR
field. The extraction is only permitted if the temporal object has an ISO chronology, or can be converted to aLocalDate
.This method matches the signature of the functional interface
TemporalQuery
allowing it to be used in queries via method reference,Quarter::from
.- Parameters:
temporal
- the temporal-time object to convert, not null- Returns:
- the quarter-of-year, not null
- Throws:
DateTimeException
- if unable to convert to aQuarter
-
getValue
public int getValue()
Gets the quarter-of-yearint
value.The values are numbered following the ISO-8601 standard, from 1 (Q1) to 4 (Q4).
- Returns:
- the quarter-of-year, from 1 (Q1) to 4 (Q4)
-
getDisplayName
public String getDisplayName(TextStyle style, Locale locale)
Gets the textual representation, such as 'Q1' or '4th quarter'.This returns the textual name used to identify the quarter-of-year, suitable for presentation to the user. The parameters control the style of the returned text and the locale.
If no textual mapping is found then the
numeric value
is returned.- Parameters:
style
- the length of the text required, not nulllocale
- the locale to use, not null- Returns:
- the text value of the quarter-of-year, not null
-
isSupported
public boolean isSupported(TemporalField field)
Checks if the specified field is supported.This checks if this quarter-of-year can be queried for the specified field. If false, then calling the
range
andget
methods will throw an exception.If the field is
QUARTER_OF_YEAR
then this method returns true. AllChronoField
instances will return false.If the field is not a
ChronoField
, then the result of this method is obtained by invokingTemporalField.isSupportedBy(TemporalAccessor)
passingthis
as the argument. Whether the field is supported is determined by the field.- Specified by:
isSupported
in interfaceTemporalAccessor
- Parameters:
field
- the field to check, null returns false- Returns:
- true if the field is supported on this quarter-of-year, false if not
-
range
public ValueRange range(TemporalField field)
Gets the range of valid values for the specified field.The range object expresses the minimum and maximum valid values for a field. This quarter is used to enhance the accuracy of the returned range. If it is not possible to return the range, because the field is not supported or for some other reason, an exception is thrown.
If the field is
QUARTER_OF_YEAR
then the range of the quarter-of-year, from 1 to 4, will be returned. AllChronoField
instances will throw anUnsupportedTemporalTypeException
.If the field is not a
ChronoField
, then the result of this method is obtained by invokingTemporalField.rangeRefinedBy(TemporalAccessor)
passingthis
as the argument. Whether the range can be obtained is determined by the field.- Specified by:
range
in interfaceTemporalAccessor
- Parameters:
field
- the field to query the range for, not null- Returns:
- the range of valid values for the field, not null
- Throws:
DateTimeException
- if the range for the field cannot be obtainedUnsupportedTemporalTypeException
- if the field is not supported
-
get
public int get(TemporalField field)
Gets the value of the specified field from this quarter-of-year as anint
.This queries this quarter for the value for the specified field. The returned value will always be within the valid range of values for the field. If it is not possible to return the value, because the field is not supported or for some other reason, an exception is thrown.
If the field is
QUARTER_OF_YEAR
then the value of the quarter-of-year, from 1 to 4, will be returned. AllChronoField
instances will throw anUnsupportedTemporalTypeException
.If the field is not a
ChronoField
, then the result of this method is obtained by invokingTemporalField.getFrom(TemporalAccessor)
passingthis
as the argument. Whether the value can be obtained, and what the value represents, is determined by the field.- Specified by:
get
in interfaceTemporalAccessor
- Parameters:
field
- the field to get, not null- Returns:
- the value for the field, within the valid range of values
- Throws:
DateTimeException
- if a value for the field cannot be obtained or the value is outside the range of valid values for the fieldUnsupportedTemporalTypeException
- if the field is not supported or the range of values exceeds anint
ArithmeticException
- if numeric overflow occurs
-
getLong
public long getLong(TemporalField field)
Gets the value of the specified field from this quarter-of-year as along
.This queries this quarter for the value for the specified field. If it is not possible to return the value, because the field is not supported or for some other reason, an exception is thrown.
If the field is
QUARTER_OF_YEAR
then the value of the quarter-of-year, from 1 to 4, will be returned. All otherChronoField
instances will throw anUnsupportedTemporalTypeException
.If the field is not a
ChronoField
, then the result of this method is obtained by invokingTemporalField.getFrom(TemporalAccessor)
passingthis
as the argument. Whether the value can be obtained, and what the value represents, is determined by the field.- Specified by:
getLong
in interfaceTemporalAccessor
- Parameters:
field
- the field to get, not null- Returns:
- the value for the field
- Throws:
DateTimeException
- if a value for the field cannot be obtainedUnsupportedTemporalTypeException
- if the field is not supportedArithmeticException
- if numeric overflow occurs
-
plus
public Quarter plus(long quarters)
Returns the quarter that is the specified number of quarters after this one.The calculation rolls around the end of the year from Q4 to Q1. The specified period may be negative.
This instance is immutable and unaffected by this method call.
- Parameters:
quarters
- the quarters to add, positive or negative- Returns:
- the resulting quarter, not null
-
minus
public Quarter minus(long quarters)
Returns the quarter that is the specified number of quarters before this one.The calculation rolls around the start of the year from Q1 to Q4. The specified period may be negative.
This instance is immutable and unaffected by this method call.
- Parameters:
quarters
- the quarters to subtract, positive or negative- Returns:
- the resulting quarter, not null
-
length
public int length(boolean leapYear)
Gets the length of this quarter in days.This takes a flag to determine whether to return the length for a leap year or not.
Q1 has 90 in a standard year and 91 days in a leap year. Q2 has 91 days. Q3 and Q4 have 92 days.
- Parameters:
leapYear
- true if the length is required for a leap year- Returns:
- the length of this month in days, from 90 to 92
-
firstMonth
public Month firstMonth()
Gets the first of the three months that this quarter refers to.Q1 will return January.
Q2 will return April.
Q3 will return July.
Q4 will return October.To obtain the other two months of the quarter, simply use
Month.plus(long)
on the returned month.- Returns:
- the first month in the quarter, not null
-
query
public <R> R query(TemporalQuery<R> query)
Queries this quarter-of-year using the specified query.This queries this quarter-of-year using the specified query strategy object. The
TemporalQuery
object defines the logic to be used to obtain the result. Read the documentation of the query to understand what the result of this method will be.The result of this method is obtained by invoking the
TemporalQuery.queryFrom(TemporalAccessor)
method on the specified query passingthis
as the argument.- Specified by:
query
in interfaceTemporalAccessor
- Type Parameters:
R
- the type of the result- Parameters:
query
- the query to invoke, not null- Returns:
- the query result, null may be returned (defined by the query)
- Throws:
DateTimeException
- if unable to query (defined by the query)ArithmeticException
- if numeric overflow occurs (defined by the query)
-
adjustInto
public Temporal adjustInto(Temporal temporal)
Adjusts the specified temporal object to have this quarter-of-year.This returns a temporal object of the same observable type as the input with the quarter-of-year changed to be the same as this.
The adjustment is equivalent to using
Temporal.with(TemporalField, long)
passingIsoFields.QUARTER_OF_YEAR
as the field. If the specified temporal object does not use the ISO calendar system then aDateTimeException
is thrown.In most cases, it is clearer to reverse the calling pattern by using
Temporal.with(TemporalAdjuster)
:// these two lines are equivalent, but the second approach is recommended temporal = thisQuarter.adjustInto(temporal); temporal = temporal.with(thisQuarter);
For example, given a date in May, the following are output:
dateInMay.with(Q1); // three months earlier dateInMay.with(Q2); // no change dateInMay.with(Q3); // three months later dateInMay.with(Q4); // six months later
This instance is immutable and unaffected by this method call.
- Specified by:
adjustInto
in interfaceTemporalAdjuster
- Parameters:
temporal
- the target object to be adjusted, not null- Returns:
- the adjusted object, not null
- Throws:
DateTimeException
- if unable to make the adjustmentArithmeticException
- if numeric overflow occurs
-
-