Java Milliseconds getDurationSecFromMillisDouble(long millis)

Here you can find the source of getDurationSecFromMillisDouble(long millis)

Description

get Duration Sec From Millis Double

License

Apache License

Declaration

public static Double getDurationSecFromMillisDouble(long millis) 

Method Source Code

//package com.java2s;
/*  /*from www . jav a  2s .c  om*/
    
Copyright [2013-2014] eBay Software Foundation
    
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 Double getDurationSecFromMillisDouble(long millis) {

        return (double) millis / 1000.00;

    }
}

Related

  1. filetimeToMillis(long filetime)
  2. formatDateMillis(long millis)
  3. FormatDateTime(Calendar p_date, String p_seperator, boolean p_showMilliseconds)
  4. fractionOfDayToMilliseconds(float fFractionOfDay)
  5. getDurationFromMillis(final long millis)
  6. getElapsedTimeInMilliseconds(Date startDate, Date endDate)
  7. getExpirationInMilliSeconds(long currentTime, int expirationTime)
  8. getExpirationMillisAbs(int recordExpirationTimestamp)
  9. getFullSecondsElapsedTimeMillis(long start, long end)