Example #1
0
 public DateExp add(YearMonthDurationExp v) {
   return new DateExp(getValue().add(v.getValue()));
 }
Example #2
0
 public DateExp subtract(YearMonthDurationExp v) {
   return new DateExp(getValue().subtract(v.getValue()));
 }