Java Nano Second Convert nanoToSec(Long n)

Here you can find the source of nanoToSec(Long n)

Description

nano To Sec

License

Open Source License

Declaration

public static int nanoToSec(Long n) 

Method Source Code

//package com.java2s;
/*/*  www .ja  va2  s.co m*/
 LionChat Server/Client library program
 Copyright (C) 2013  Enrico Fasoli
    
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
    
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
 */

public class Main {
    public static int nanoToSec(Long n) {
        //fa una semplice divisione: da nanoscondi a secondi, passando da Long a Int
        return (int) (n / 1000000000);
    }
}

Related

  1. nanoTimeLessThan(long leftNanos, long rightNanos)
  2. nanoTimeToSeconds(long nanoTime)
  3. nanoToMilli(double nanoseconds)
  4. nanoToMs(final long nano)
  5. nanoToMsConverter(long time)
  6. nanoToSeconds(double nano)
  7. nanoToSecs(final long nanoTime)
  8. nanoToStr(long tsp)
  9. nowInNanoseconds()