本文整理了Java中cesiumlanguagewriter.YearMonthDay.getDayOfYear()
方法的一些代码示例,展示了YearMonthDay.getDayOfYear()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YearMonthDay.getDayOfYear()
方法的具体详情如下:
包路径:cesiumlanguagewriter.YearMonthDay
类名称:YearMonthDay
方法名:getDayOfYear
[英]Gets the day of the year (in the range 1 through the number of days in the year).
[中]获取一年中的日期(范围从1到一年中的天数)。
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
* Gets the day of the year represented by this instance.
* @return
An integer that indicates the day of the year.
This property value ranges from 1 through the number of days in the year.
*/
public final int getDayOfYear() {
return m_yearMonthDay.getDayOfYear();
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Tests the {@code DayOfYear} ({@link YearMonthDay#getDayOfYear get}) property.
*/
@Test
public final void testDayOfYear() {
YearMonthDay nonLeapBeforeEndOfFeb = new YearMonthDay(2006, 2, 15);
Assert.assertEquals((int) 46, (int) nonLeapBeforeEndOfFeb.getDayOfYear());
YearMonthDay nonLeapAfterEndOfFeb = new YearMonthDay(2006, 3, 14);
Assert.assertEquals((int) 73, (int) nonLeapAfterEndOfFeb.getDayOfYear());
YearMonthDay leapBeforeEndOfFeb = new YearMonthDay(2008, 2, 15);
Assert.assertEquals((int) 46, (int) leapBeforeEndOfFeb.getDayOfYear());
YearMonthDay leapAfterEndOfFeb = new YearMonthDay(2008, 3, 14);
Assert.assertEquals((int) 74, (int) leapAfterEndOfFeb.getDayOfYear());
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
@Test
public final void testDefaultConstructedIsValid() {
YearMonthDay ymd = new YearMonthDay();
YearMonthDay ymd2 = new YearMonthDay(ymd.getYear(), ymd.getMonth(), ymd.getDay());
AssertHelper.assertEquals(ymd, ymd2);
AssertHelper.assertEquals(ymd.getDayOfWeek(), ymd2.getDayOfWeek());
Assert.assertEquals((int) ymd.getDayOfYear(), (int) ymd2.getDayOfYear());
}
内容来源于网络,如有侵权,请联系作者删除!