新增 YearQuarter#getQuarterValue

ZhouXY108 2024-12-24 09:23:20 +08:00
parent 275a156184
commit 7067e6f876
1 changed files with 6 additions and 2 deletions

View File

@ -138,11 +138,15 @@ public final class YearQuarter implements Comparable<YearQuarter>, Serializable
// #region - Getters
public int getYear() {
return year;
return this.year;
}
public Quarter getQuarter() {
return quarter;
return this.quarter;
}
public int getQuarterValue() {
return this.quarter.getValue();
}
public YearMonth firstYearMonth() {