gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-17 15:07:31 26 4
gpt4 key购买 nike

本文整理了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

/**
*  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());
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com