Beispiel #1
0
  /**
   * return a string formatted version of time <code>t</code> rounding to <code>round</code>
   *
   * @param t
   * @param round
   * @return String value
   */
  public static String valueOf(long t, int round) {
    TimeFormat f = new TimeFormat(t, round);

    return f.toString();
  }