Package ns.foundation

Examples of ns.foundation.NSTimestamp.compare()


    NSTimestamp firstTime = new NSTimestamp();
    Date date = new Date(firstTime.getTime() + 1000);
    NSTimestamp nextTime = new NSTimestamp(date);
    assertEquals(-1, firstTime.compare(nextTime));
    assertEquals(0, firstTime.compare(firstTime));
    assertEquals(1, nextTime.compare(firstTime));
  }

  @SuppressWarnings("deprecation")
  private static Date jan1() {
    Date d = new Date(108, 0, 1, 0, 0, 0);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.