Home | History | Annotate | Download | only in datatype

Lines Matching refs:MINUTES

35  * minutes, and seconds) plus a sign (+/-) field.</p>
162 boolean minuteSet = isSet(DatatypeConstants.MINUTES);
274 * Obtains the value of the MINUTES field as an integer value,
278 * that this method works on the MINUTES field.
280 * @return Minutes of this <code>Duration</code>.
284 return getFieldValueAsInt(DatatypeConstants.MINUTES);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
389 * MINUTES, or SECONDS.)
394 * For YEARS, MONTHS, DAYS, HOURS, and MINUTES, this method
407 * MINUTES, or SECONDS.)
428 * MINUTES, or SECONDS.)
444 * "-(1 hour,50 minutes)" + "-20 minutes" = "-(1 hours,70 minutes)"
494 * order of YEARS, MONTHS, DAYS, HOURS, MINUTES, SECONDS, and MILLISECONDS
575 * "-(1 hour,50 minutes)" - "-20 minutes" = "-(1hours,30 minutes)"
718 * <li>the computed days, along with the hours, minutes and seconds
912 BigInteger minutes = (BigInteger) getField(DatatypeConstants.MINUTES);
914 if (hours != null || minutes != null || seconds != null) {
919 if (minutes != null) {
920 buf.append(minutes).append('M');