Java Time Format formatTimeDeltaValue(long delta)

Here you can find the source of formatTimeDeltaValue(long delta)

Description

format Time Delta Value

License

Apache License

Declaration

public static String formatTimeDeltaValue(long delta) 

Method Source Code

//package com.java2s;
/*/*w  ww. j av  a2  s .co  m*/
 * #!
 * Ontopia Vizigator
 * #-
 * Copyright (C) 2001 - 2013 The Ontopia Project
 * #-
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * !#
 */

public class Main {
    public static String formatTimeDeltaValue(long delta) {
        if (delta >= 1000)
            return "" + (delta / 1000) + "." + pad(delta % 1000, 3)
                    + " seconds";
        if (delta >= 100)
            return "0." + delta + " seconds";
        if (delta >= 10)
            return "0.0" + delta + " seconds";
        if (delta >= 0)
            return "0.00" + delta + "seconds";
        return "ERROR: Negative time!";
    }

    private static String pad(long toPad, int length) {
        String retVal = Long.toString(toPad);

        while (retVal.length() < length)
            retVal = "0" + retVal;

        return retVal;
    }
}

Related

  1. formatTime2(long secs)
  2. formatTime2(long timeInSeconds)
  3. formatTime3(long secs)
  4. formatTimeAgo(int seconds)
  5. formatTimeArea(Integer hour)
  6. formatTimeDiff(long finishTime, long startTime)
  7. formatTimeDiff(long finishTime, long startTime)
  8. formatTimeDifference(long ms)
  9. formatTimeDifference(long time1, long time2)