1.0.0-RC2 #19

Merged
ZhouXY108 merged 106 commits from 1.x.x into dev 2025-01-07 17:18:48 +08:00
Showing only changes of commit c78a2ab380 - Show all commits

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() {