本文整理了Java中cesiumlanguagewriter.YearMonthDay
类的一些代码示例,展示了YearMonthDay
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YearMonthDay
类的具体详情如下:
包路径:cesiumlanguagewriter.YearMonthDay
类名称:YearMonthDay
[英]Represents a calendar year, month, and day.
[中]表示日历年、月和日。
代码示例来源: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
/**
*
Returns {@code true} if {@code left} is greater than or equal to {@code right}.
* @param left The instance to compare to {@code right}.
* @param right The instance to compare to {@code left}.
* @return
{@code true} if {@code left} is greater than or equal to {@code right}; otherwise, {@code false}.
*/
@CS2JInfo("This method implements the functionality of the overloaded operator: 'System.Boolean >=(YearMonthDay,YearMonthDay)'")
public static boolean greaterThanOrEqual(@Nonnull YearMonthDay left, @Nonnull YearMonthDay right) {
return left.compareTo(right) >= 0;
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Indicates whether the year, month, and day are a valid representation.
* @param year The year.
* @param month The month of the year (in the range 1 through 12)
* @param day The day of the month (in the range 1 through the number of days in
{@code month})
* @return {@code true} if the representation is valid and
{@code false} if it is not.
*/
public static boolean isValidDate(int year, int month, int day) {
return year >= 1 && year <= 9999 && month >= 1 && month <= 12 && day >= 1 && day <= daysInMonth(year, month);
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
* Gets the Julian day number for this {@link YearMonthDay} instance,
assuming noon on this day.
*/
public final int getJulianDayNumber() {
// Algorithm from page 604 of the Explanatory Supplement to the
// Astronomical Almanac (Seidelmann 1992).
int a = (getMonth() - 14) / 12;
int b = getYear() + 4800 + a;
return 1461 * b / 4 + 367 * (getMonth() - 2 - 12 * a) / 12 - 3 * ((b + 100) / 100) / 4 + getDay() - 32075;
}
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
* Gets the day of the year (in the range 1 through the number of days in the year).
*/
public final int getDayOfYear() {
int[] cumulativeMonthTable = getCumulativeMonthTable(getYear());
return getDay() + cumulativeMonthTable[m_month];
}
代码示例来源: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
2001
};
Assert.assertTrue(YearMonthDay.isLeapYear(years[0]));
Assert.assertFalse(YearMonthDay.isLeapYear(years[1]));
for (final int year : years) {
int cumulativeDays = 0;
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());
Assert.assertEquals((int) 1, (int) ymd.getDay());
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());
Assert.assertEquals((int) daysInMonth, (int) ymd.getDay());
cumulativeDays += daysInMonth;
代码示例来源: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
return false;
if (!YearMonthDay.isValidDate(year, month, day)) {
return false;
boolean dayHasLeapSecond = LeapSeconds.getInstance().doesDayHaveLeapSecond(new YearMonthDay(year, month, day).getJulianDayNumber());
return dayHasLeapSecond && hour == 23 && minute == 59;
代码示例来源: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
YearMonthDay first = new YearMonthDay(2000, 1, 1);
YearMonthDay second = new YearMonthDay(2000, 1, 1);
AssertHelper.assertEquals(first, second);
Assert.assertTrue(first.equalsType(second));
Assert.assertTrue(second.equalsType(first));
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));
Assert.assertFalse(second.equalsType(first));
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));
Assert.assertFalse(second.equalsType(first));
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));
Assert.assertFalse(second.equalsType(first));
AssertHelper.assertNotEqual(0, first.compareTo(second));
AssertHelper.assertNotEqual(0, second.compareTo(first));
AssertHelper.assertNotEqual(first, 5);
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Initializes a {@link YearMonthDay} from the provided values.
* @param year The year.
* @param dayOfYear The day of the year
(in the range 1 through the number of days in the year).
*/
public YearMonthDay(int year, int dayOfYear) {
if (dayOfYear > daysInYear(year)) {
throw new ArgumentException(CesiumLocalization.getYearMonthDayInvalidArgument(), "dayOfYear");
}
// year is stored zero-indexed
m_year = year - 1;
int[] cumulativeMonthTable = getCumulativeMonthTable(year);
// month is stored zero-indexed
for (m_month = 11; m_month > 0; --m_month) {
if (cumulativeMonthTable[m_month] < dayOfYear) {
break;
}
}
// day is stored zero-indexed
m_day = dayOfYear - cumulativeMonthTable[m_month] - 1;
if (!isValidDate(m_year + 1, m_month + 1, m_day + 1)) {
throw new ArgumentException(CesiumLocalization.getYearMonthDayInvalidArgument());
}
}
代码示例来源: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
/**
*
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
/**
*
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
Assert.assertFalse(YearMonthDay.isValidDate(2000, 0, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 1, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 2, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 3, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 4, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 5, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 6, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 7, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 8, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 9, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 10, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 11, 1));
Assert.assertTrue(YearMonthDay.isValidDate(2000, 12, 1));
Assert.assertFalse(YearMonthDay.isValidDate(2000, 13, 1));
for (int month = 1; month < 13; ++month) {
int daysInMonth = YearMonthDay.daysInMonth(2000, month);
Assert.assertFalse(YearMonthDay.isValidDate(2000, month, 0));
for (int day = 1; day < daysInMonth + 1; ++day) {
Assert.assertTrue(YearMonthDay.isValidDate(2000, month, day));
Assert.assertFalse(YearMonthDay.isValidDate(2000, month, daysInMonth + 1));
代码示例来源:origin: AnalyticalGraphicsInc/czml-writer
/**
*
Indicates whether another object is exactly equal to this instance.
* @param obj The object to compare to this instance.
* @return {@code true} if {@code obj} is an instance of this type and represents the same value as this instance; otherwise, {@code false}.
*/
@Override
public boolean equals(Object obj) {
return obj instanceof YearMonthDay && equalsType((YearMonthDay) obj);
}
代码示例来源: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");
}
内容来源于网络,如有侵权,请联系作者删除!