Java Integer Create toInt(double value)

Here you can find the source of toInt(double value)

Description

to Int

License

Apache License

Declaration

private static final int toInt(double value) 

Method Source Code

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

public class Main {
    private static final int toInt(double value) {
        return (int) value;
    }//w w w  .j a  va  2  s.c  o  m
}

Related

  1. toInt(double d)
  2. toInt(double f)
  3. toInt(double in)
  4. toInt(double num)
  5. toInt(double val)
  6. toInt(double[] arr)
  7. toInt(double[] array)
  8. toInt(double[] layer)
  9. toInt(double[] v)