Searched defs:getZone (Results 1 - 9 of 9) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/
H A DTCKClock.java92 public ZoneId getZone() { method in class:TCKClock.MockInstantClock
122 assertEquals(MOCK_INSTANT.getZone(), ZONE);
131 assertEquals(changed.getZone(), london);
/libcore/ojluni/src/main/java/java/time/
H A DClock.java365 public abstract ZoneId getZone(); method in class:Clock
455 public ZoneId getZone() { method in class:Clock.SystemClock
505 public ZoneId getZone() { method in class:Clock.FixedClock
555 public ZoneId getZone() { method in class:Clock.OffsetClock
556 return baseClock.getZone();
560 if (zone.equals(baseClock.getZone())) { // intentional NPE
605 public ZoneId getZone() { method in class:Clock.TickClock
606 return baseClock.getZone();
610 if (zone.equals(baseClock.getZone())) { // intentional NPE
H A DZonedDateTime.java228 return ofInstant(now, clock.getZone());
885 ZoneOffsetTransition trans = getZone().getRules().getTransition(dateTime);
913 ZoneOffsetTransition trans = getZone().getRules().getTransition(toLocalDateTime());
938 public ZoneId getZone() { method in class:ZonedDateTime
/libcore/ojluni/src/main/java/java/time/chrono/
H A DChronoZonedDateTime.java277 ZoneId getZone(); method in interface:ChronoZonedDateTime
485 return (R) getZone();
576 cmp = getZone().getId().compareTo(other.getZone().getId());
H A DChronoZonedDateTimeImpl.java232 ZoneOffsetTransition trans = getZone().getRules().getTransition(LocalDateTime.from(this));
244 ZoneOffsetTransition trans = getZone().getRules().getTransition(LocalDateTime.from(this));
261 public ZoneId getZone() { method in class:ChronoZonedDateTimeImpl
331 * out.writeObject(getZone());
378 return toLocalDateTime().hashCode() ^ getOffset().hashCode() ^ Integer.rotateLeft(getZone().hashCode(), 3);
384 if (getOffset() != getZone()) {
385 str += '[' + getZone().toString() + ']';
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeFormatter.java1505 public ZoneId getZone() { method in class:DateTimeFormatter
/libcore/ojluni/src/main/java/sun/util/calendar/
H A DCalendarDate.java363 public TimeZone getZone() { method in class:CalendarDate
H A DImmutableGregorianDate.java189 public TimeZone getZone() { method in class:ImmutableGregorianDate
190 return date.getZone();
/libcore/ojluni/src/main/java/java/util/
H A DCalendar.java2892 TimeZone getZone() { method in class:Calendar

Completed in 125 milliseconds