Java floor floorSec(long milli)

Here you can find the source of floorSec(long milli)

Description

floor Sec

License

Mozilla Public License

Declaration

public static long floorSec(long milli) 

Method Source Code

//package com.java2s;
//License from project: Mozilla Public License 

public class Main {
    public static long floorSec(long milli) {
        return (milli / 1000L) * 1000L;
    }//from w ww . j a v  a 2  s .c  o m
}

Related

  1. floorPOT(int n)
  2. floorPowerOf2(final int n)
  3. floorPowerOf2(final int x)
  4. floorPowerOf2(int n)
  5. floorPowerOfTwo(final int a)
  6. floorSec(long valueMs)
  7. floorSqrt(long i)
  8. floorToLong(float pX)
  9. floorToNearestNumberDivisibleByFour(long number)