本文整理了Java中cesiumlanguagewriter.YearMonthDay.<init>()
方法的一些代码示例,展示了YearMonthDay.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YearMonthDay.<init>()
方法的具体详情如下:
包路径:cesiumlanguagewriter.YearMonthDay
类名称:YearMonthDay
方法名:<init>
[英]Initializes a new instance.
[中]初始化一个新实例。
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Initializes a {@link GregorianDate} from the provided values. The
fractional portion of the {@code daysOfYear} will be converted into
hours, minutes, and seconds.
* @param year The year.
* @param daysOfYear The day of year plus the fractional portion of the day
(in the range 1 through the number of days in the given year).
*/
public GregorianDate(int year, double daysOfYear) {
m_yearMonthDay = new YearMonthDay(year, (int) daysOfYear);
double fraction = daysOfYear % 1;
double seconds = fraction * TimeConstants.SecondsPerDay;
m_hour = (int) (seconds / SecondsPerHour);
seconds -= m_hour * SecondsPerHour;
m_minute = (int) (seconds / SecondsPerMinute);
seconds -= m_minute * SecondsPerMinute;
m_second = seconds;
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
@Test
public final void testRoundTripDefaultConstructed() {
YearMonthDay ymd = new YearMonthDay();
YearMonthDay ymd2 = new YearMonthDay(ymd.getJulianDayNumber());
AssertHelper.assertEquals(ymd, ymd2);
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
throw new ArgumentException(CesiumLocalization.getHourMinuteSecondInvalidArgument());
m_yearMonthDay = new YearMonthDay(year, month, day);
m_hour = hour;
m_minute = minute;
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
convertedJulianDate = julianDate.subtractSeconds(1D).toTimeStandard(timeStandard);
m_yearMonthDay = new YearMonthDay(convertedJulianDate);
double secondsOfDay = convertedJulianDate.getSecondsOfDay();
m_hour = (int) Math.floor(secondsOfDay / SecondsPerHour);
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Tests that YearMonthDay.GetHashCode returns something at least reasonably random.
*/
@Test
public final void testGetHashCode() {
YearMonthDay ymd1 = new YearMonthDay(2006, 3, 14);
YearMonthDay ymd2 = new YearMonthDay(2006, 3, 14);
YearMonthDay ymd3 = new YearMonthDay(2006, 5, 26);
Assert.assertEquals((int) ymd1.hashCode(), (int) ymd2.hashCode());
AssertHelper.assertNotEqual(ymd1.hashCode(), ymd3.hashCode());
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
@Test
public final void testDayOfWeek() {
YearMonthDay ymd = new YearMonthDay(2009, 6, 10);
AssertHelper.assertEquals(DayOfWeek.WEDNESDAY, ymd.getDayOfWeek());
ymd = new YearMonthDay(2009, 6, 11);
AssertHelper.assertEquals(DayOfWeek.THURSDAY, ymd.getDayOfWeek());
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Initializes a {@link GregorianDate} from the provided
{@link ZonedDateTime}. If the provided {@link ZonedDateTime} is in local
time, it is converted to UTC.
* @param dateTime The {@link ZonedDateTime}.
*/
public GregorianDate(@Nonnull ZonedDateTime dateTime) {
{
dateTime = DateTimeHelper.toUniversalTime(dateTime);
}
m_yearMonthDay = new YearMonthDay(dateTime.getYear(), dateTime.getMonthValue(), dateTime.getDayOfMonth());
m_hour = dateTime.getHour();
m_minute = dateTime.getMinute();
final long ticksPerMinute = 600000000L;
final double ticksPerSecond = 1.0e7;
m_second = DateTimeHelper.getTicks(dateTime) % ticksPerMinute / ticksPerSecond;
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
boolean dayHasLeapSecond = LeapSeconds.getInstance().doesDayHaveLeapSecond(new YearMonthDay(year, month, day).getJulianDayNumber());
return dayHasLeapSecond && hour == 23 && minute == 59;
代码示例来源: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
/**
*
Tests the {@link YearMonthDay#toString} method.
*/
@Test
public final void testToString() {
YearMonthDay ymd1 = new YearMonthDay(2006, 3, 14);
Assert.assertEquals(ymd1.toString(), "2006:3:14");
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
cesiumlanguagewriter.YearMonthDay yearMonthDay = new YearMonthDay(year, dayOfYear);
if (!isValid(year, yearMonthDay.getMonth(), yearMonthDay.getDay(), hour, minute, second)) {
throw new ArgumentException(CesiumLocalization.getHourMinuteSecondInvalidArgument());
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Tests that an appropriate exception is thrown when constructing a
YearMonthDay with an invalid date.
*/
@Test
public final void testConstructWithInvalidDate() {
ExpectedExceptionHelper.expectException(getRule$expectedException(), ArgumentException.class);
YearMonthDay ymd = new YearMonthDay(2006, 2, 29);
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
@Test
public final void testJulianDayNumber() {
final int astronomicalJulianDayNumber = 2454959;
YearMonthDay ymd = new YearMonthDay(astronomicalJulianDayNumber);
Assert.assertEquals((int) astronomicalJulianDayNumber, (int) ymd.getJulianDayNumber());
}
代码示例来源: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());
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Tests that initialization of and access to the structure elements is performed correctly.
*/
@Test
public final void testRetainValue() {
YearMonthDay date = new YearMonthDay(2000, 1, 1);
Assert.assertEquals((int) 2000, (int) date.getYear());
Assert.assertEquals((int) 1, (int) date.getMonth());
Assert.assertEquals((int) 1, (int) date.getDay());
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Tests the CompareTo methods and the comparison operators.
*/
@Test
public final void testComparisons() {
YearMonthDay ymd1 = new YearMonthDay(2006, 3, 14);
YearMonthDay ymd2 = new YearMonthDay(2006, 3, 14);
YearMonthDay ymd3 = new YearMonthDay(2006, 5, 26);
Object ymd4 = new YearMonthDay(2004, 2, 21);
Assert.assertTrue(YearMonthDay.equals(ymd1, ymd2));
Assert.assertTrue(YearMonthDay.equals(ymd2, ymd1));
Assert.assertTrue(YearMonthDay.notEquals(ymd1, ymd3));
Assert.assertTrue(YearMonthDay.greaterThanOrEqual(ymd1, ymd2));
Assert.assertTrue(YearMonthDay.lessThanOrEqual(ymd1, ymd2));
Assert.assertTrue(ymd1.compareTo(ymd2) == 0);
Assert.assertTrue(YearMonthDay.lessThan(ymd2, ymd3));
Assert.assertTrue(YearMonthDay.lessThanOrEqual(ymd2, ymd3));
Assert.assertTrue(YearMonthDay.greaterThan(ymd3, ymd2));
Assert.assertTrue(YearMonthDay.greaterThanOrEqual(ymd3, ymd2));
AssertHelper.assertNotEqual(ymd1, ymd4);
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
YearMonthDay first = new YearMonthDay(2000, 1, 1);
YearMonthDay second = new YearMonthDay(2000, 1, 1);
AssertHelper.assertEquals(first, second);
Assert.assertTrue(first.equalsType(second));
Assert.assertEquals((int) 0, (int) first.compareTo(second));
Assert.assertEquals((int) 0, (int) second.compareTo(first));
second = new YearMonthDay(2001, 1, 1);
AssertHelper.assertNotEqual(first, second);
Assert.assertFalse(first.equalsType(second));
AssertHelper.assertNotEqual(0, first.compareTo(second));
AssertHelper.assertNotEqual(0, second.compareTo(first));
second = new YearMonthDay(2000, 2, 1);
AssertHelper.assertNotEqual(first, second);
Assert.assertFalse(first.equalsType(second));
AssertHelper.assertNotEqual(0, first.compareTo(second));
AssertHelper.assertNotEqual(0, second.compareTo(first));
second = new YearMonthDay(2000, 1, 2);
AssertHelper.assertNotEqual(first, second);
Assert.assertFalse(first.equalsType(second));
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Tests the constructor overload that takes a {@link JulianDate}.
*/
@Test
public final void testConstructFromJulianDate() {
ZonedDateTime dt = DateTimeHelper.create(2008, 10, 23, 12, 0, 0);
JulianDate jd = new JulianDate(dt);
YearMonthDay ymd = new YearMonthDay(jd);
Assert.assertEquals((int) 2008, (int) ymd.getYear());
Assert.assertEquals((int) 10, (int) ymd.getMonth());
Assert.assertEquals((int) 23, (int) ymd.getDay());
dt = DateTimeHelper.create(2008, 10, 23, 0, 0, 0);
jd = new JulianDate(dt);
ymd = new YearMonthDay(jd);
Assert.assertEquals((int) 2008, (int) ymd.getYear());
Assert.assertEquals((int) 10, (int) ymd.getMonth());
Assert.assertEquals((int) 23, (int) ymd.getDay());
dt = DateTimeHelper.create(2008, 10, 23, 23, 59, 59);
jd = new JulianDate(dt);
ymd = new YearMonthDay(jd);
Assert.assertEquals((int) 2008, (int) ymd.getYear());
Assert.assertEquals((int) 10, (int) ymd.getMonth());
Assert.assertEquals((int) 23, (int) ymd.getDay());
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
for (int month = 1; month <= 12; ++month) {
YearMonthDay ymd = new YearMonthDay(year, cumulativeDays + 1);
Assert.assertEquals((int) year, (int) ymd.getYear());
Assert.assertEquals((int) month, (int) ymd.getMonth());
int daysInMonth = YearMonthDay.daysInMonth(year, month);
ymd = new YearMonthDay(year, cumulativeDays + daysInMonth);
Assert.assertEquals((int) year, (int) ymd.getYear());
Assert.assertEquals((int) month, (int) ymd.getMonth());
内容来源于网络,如有侵权,请联系作者删除!