Home | History | Annotate | Download | only in datatype

Lines Matching defs:days

197      * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
208 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
221 * @param days of this <code>Duration</code>
235 final BigInteger days,
242 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
250 * @param days of this <code>Duration</code>
263 * BigInteger days,
272 final int days,
283 // days may not be set
284 BigInteger realDays = (days != DatatypeConstants.FIELD_UNDEFINED) ? BigInteger.valueOf((long) days) : null;
371 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
414 long days = val / 24L;
415 if (days <= ((long) Integer.MAX_VALUE)) {
417 DatatypeConstants.FIELD_UNDEFINED, (int) days, hours, minutes, seconds);
421 BigInteger.valueOf(days), BigInteger.valueOf(hours),
432 BigInteger days = BigInteger.valueOf(val);
433 return newDuration(isPositive, null, null, days, hours, minutes, seconds);
583 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
629 null, // days