/**
  * Returns a string describing the adjustment.
  *
  * @return the descriptive string
  */
 @Override
 public String toString() {
   if (this.equals(NONE)) {
     return convention.toString();
   }
   return convention + " using calendar " + calendar;
 }