Home | History | Annotate | Download | only in temporal

Lines Matching refs:time

62 package java.time.temporal;
64 import java.time.DateTimeException;
65 import java.time.Duration;
66 import java.time.LocalTime;
67 import java.time.Period;
68 import java.time.chrono.ChronoLocalDate;
69 import java.time.chrono.ChronoLocalDateTime;
70 import java.time.chrono.ChronoZonedDateTime;
73 * A unit of date-time, such as Days or Hours.
75 * Measurement of time is built on units, such as years, months, days, hours, minutes and seconds.
85 * The unit works using double dispatch. Client code calls methods on a date-time like
87 * If it is, then the date-time must handle it.
108 * daylight saving time changes.
120 * daylight saving time changes.
132 * A date is time-based if it can be used to imply meaning from a date.
143 * Checks if this unit represents a component of a time.
145 * A unit is time-based if it can be used to imply meaning from a time.
151 * @return true if this unit is a component of a time
159 * This checks that the implementing date-time can add/subtract this unit.
231 * Calculates the amount of time between two temporal objects.
276 * @return the amount of time between temporal1Inclusive and temporal2Exclusive