com.tyme.solar.SolarSeason Maven / Gradle / Ivy
package com.tyme.solar;
import com.tyme.AbstractTyme;
import java.util.ArrayList;
import java.util.List;
/**
* 公历季度
*
* @author 6tail
*/
public class SolarSeason extends AbstractTyme {
public static final String[] NAMES = {"一季度", "二季度", "三季度", "四季度"};
/**
* 年
*/
protected SolarYear year;
/**
* 索引,0-3
*/
protected int index;
/**
* 初始化
*
* @param year 年
* @param index 索引,0-3
*/
public SolarSeason(int year, int index) {
if (index < 0 || index > 3) {
throw new IllegalArgumentException(String.format("illegal solar season index: %d", index));
}
this.year = SolarYear.fromYear(year);
this.index = index;
}
public static SolarSeason fromIndex(int year, int index) {
return new SolarSeason(year, index);
}
/**
* 公历年
*
* @return 公历年
*/
public SolarYear getSolarYear() {
return year;
}
/**
* 年
*
* @return 年
*/
public int getYear() {
return year.getYear();
}
/**
* 索引
*
* @return 索引,0-3
*/
public int getIndex() {
return index;
}
public String getName() {
return NAMES[index];
}
@Override
public String toString() {
return year + getName();
}
public SolarSeason next(int n) {
int i = index;
int y = getYear();
if (n != 0) {
i += n;
y += i / 4;
i %= 4;
if (i < 0) {
i += 4;
y -= 1;
}
}
return fromIndex(y, i);
}
/**
* 月份列表
*
* @return 月份列表,1季度有3个月。
*/
public List getMonths() {
List l = new ArrayList<>(3);
int y = getYear();
for (int i = 1; i < 4; i++) {
l.add(SolarMonth.fromYm(y, index * 3 + i));
}
return l;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy