cesiumlanguagewriter.YearMonthDay.getDayOfYear()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(83)

本文整理了Java中cesiumlanguagewriter.YearMonthDay.getDayOfYear()方法的一些代码示例,展示了YearMonthDay.getDayOfYear()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YearMonthDay.getDayOfYear()方法的具体详情如下:
包路径:cesiumlanguagewriter.YearMonthDay
类名称:YearMonthDay
方法名:getDayOfYear

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

  1. /**
  2. * Gets the day of the year represented by this instance.
  3. * @return
  4. An integer that indicates the day of the year.
  5. This property value ranges from 1 through the number of days in the year.
  6. */
  7. public final int getDayOfYear() {
  8. return m_yearMonthDay.getDayOfYear();
  9. }

代码示例来源:origin: AnalyticalGraphicsInc/czml-writer

  1. /**
  2. *
  3. Tests the {@code DayOfYear} ({@link YearMonthDay#getDayOfYear get}) property.
  4. */
  5. @Test
  6. public final void testDayOfYear() {
  7. YearMonthDay nonLeapBeforeEndOfFeb = new YearMonthDay(2006, 2, 15);
  8. Assert.assertEquals((int) 46, (int) nonLeapBeforeEndOfFeb.getDayOfYear());
  9. YearMonthDay nonLeapAfterEndOfFeb = new YearMonthDay(2006, 3, 14);
  10. Assert.assertEquals((int) 73, (int) nonLeapAfterEndOfFeb.getDayOfYear());
  11. YearMonthDay leapBeforeEndOfFeb = new YearMonthDay(2008, 2, 15);
  12. Assert.assertEquals((int) 46, (int) leapBeforeEndOfFeb.getDayOfYear());
  13. YearMonthDay leapAfterEndOfFeb = new YearMonthDay(2008, 3, 14);
  14. Assert.assertEquals((int) 74, (int) leapAfterEndOfFeb.getDayOfYear());
  15. }

代码示例来源:origin: AnalyticalGraphicsInc/czml-writer

  1. @Test
  2. public final void testDefaultConstructedIsValid() {
  3. YearMonthDay ymd = new YearMonthDay();
  4. YearMonthDay ymd2 = new YearMonthDay(ymd.getYear(), ymd.getMonth(), ymd.getDay());
  5. AssertHelper.assertEquals(ymd, ymd2);
  6. AssertHelper.assertEquals(ymd.getDayOfWeek(), ymd2.getDayOfWeek());
  7. Assert.assertEquals((int) ymd.getDayOfYear(), (int) ymd2.getDayOfYear());
  8. }

相关文章