forked from plusone/plusone-commons
新增 YearQuarter#getQuarterValue
This commit is contained in:
parent
33e1c14755
commit
c78a2ab380
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user