新增 YearQuarter#getQuarterValue
parent
275a156184
commit
7067e6f876
|
@ -138,11 +138,15 @@ public final class YearQuarter implements Comparable<YearQuarter>, Serializable
|
||||||
// #region - Getters
|
// #region - Getters
|
||||||
|
|
||||||
public int getYear() {
|
public int getYear() {
|
||||||
return year;
|
return this.year;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Quarter getQuarter() {
|
public Quarter getQuarter() {
|
||||||
return quarter;
|
return this.quarter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getQuarterValue() {
|
||||||
|
return this.quarter.getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
public YearMonth firstYearMonth() {
|
public YearMonth firstYearMonth() {
|
||||||
|
|
Loading…
Reference in New Issue