Java Double to Int doubleToIntString(final double value)

Here you can find the source of doubleToIntString(final double value)

Description

double To Int String

License

Open Source License

Declaration

public static String doubleToIntString(final double value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String doubleToIntString(final double value) {
        return intToString(new Double(value).intValue());
    }//from  w w  w  .j  av  a  2s  .  c  om

    public static String intToString(final int value) {
        return Integer.toString(value);
    }
}

Related

  1. doubleToInt(double[][] array)
  2. doubleToInt100000(double d)
  3. doubleToInt64(Double r)
  4. doubleToInt64Bits(double d)
  5. doubleToInteger(Double num)