format method

String format(
  1. DateTime value
)
inherited

Returns a usage documentation friendly string representation of the value. The default implementation simply invokes toString.

Implementation

String format(final V value) {
  return value.toString();
}