Home | History | Annotate | Download | only in datatype

Lines Matching refs:hours

205      * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
219 * @param hours of this <code>Duration</code>
233 final BigInteger hours,
239 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
248 * @param hours of this <code>Duration</code>
261 * BigInteger hours,
270 final int hours,
283 // hours may not be set
284 BigInteger realHours = (hours != DatatypeConstants.FIELD_UNDEFINED) ? BigInteger.valueOf((long) hours) : null;
410 int hours = (int) (val % 24L); // 24 hours per day
414 DatatypeConstants.FIELD_UNDEFINED, (int) days, hours, minutes, seconds);
418 BigInteger.valueOf(days), BigInteger.valueOf(hours),
427 BigInteger hours = BigInteger.valueOf(val % 24L); // 24 hours per day
430 return newDuration(isPositive, null, null, days, hours, minutes, seconds);
627 null, // hours
905 * @param hours number of hours
920 final int hours,
929 hours,
942 * @param hours number of hours
958 final int hours,
968 hours,
980 * @param hours number of hours
996 final int hours,
1009 + "int hours, int minutes, int seconds, int milliseconds, int timezone)"
1017 hours,