This time instance is immutable and unaffected by this method call.
The following three lines are identical in effect:
TimeOfDay subtracted = dt.minusMinutes(6); TimeOfDay subtracted = dt.minus(Period.minutes(6)); TimeOfDay subtracted = dt.withFieldAdded(DurationFieldType.minutes(), -6);@param minutes the amount of minutes to subtract, may be negative @return the new time minus the increased minutes @since 1.1
|
|
|
|
|
|
|
|