Java Float Number Create toFloat(int value)

Here you can find the source of toFloat(int value)

Description

to Float

License

Apache License

Declaration

public static double toFloat(int value) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static double toFloat(int value) {
        return value / 100_000.0;
    }/* www . j  a v  a 2s. co  m*/
}

Related

  1. toFloat(final String value)
  2. toFloat(Float num, float defaultValue)
  3. toFloat(int colorComponent)
  4. toFloat(int hbits)
  5. toFloat(int majorVersion, int minorVersion)
  6. toFloat(int x)
  7. toFloat(int[] array)
  8. toFloat(long intPart, long decimalPart, long decimalPlaces)
  9. toFloat(Number value)