Java Number Min Value minInt(double d)

Here you can find the source of minInt(double d)

Description

min Int

License

Open Source License

Declaration

public static int minInt(double d) 

Method Source Code

//package com.java2s;
/* /*from  w  ww. j a va 2s  .c om*/
 * Copyright (c) 1994-2009 Routdata
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of Finalist IT Group, Inc.
 * You shall not disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into with Teamsun.
 * 
 */

public class Main {

    public static int minInt(double d) {
        return (int) Math.floor(d);
    }
}

Related

  1. minimumEditDistance(String target, String source)
  2. minIndent(int a, int b)
  3. minIndex(int a, int b)
  4. minIndex(int ix1, int ix2)
  5. minIndexOfOneOf(String string, int start, String needles)
  6. minInt(final Iterable numbers)
  7. minInt(float a, float b)
  8. minInt(int a, int b)
  9. minInteger(int var1, int var2)