Java Number Min Value minInteger(int var1, int var2)

Here you can find the source of minInteger(int var1, int var2)

Description

min Integer

License

Apache License

Declaration

public static int minInteger(int var1, int var2) 

Method Source Code

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

public class Main {
    public static int minInteger(int var1, int var2) {
        return var1 < var2 ? var1 : var2;
    }//from  w w  w .j  av  a 2 s  . co m
}

Related

  1. minIndexOfOneOf(String string, int start, String needles)
  2. minInt(double d)
  3. minInt(final Iterable numbers)
  4. minInt(float a, float b)
  5. minInt(int a, int b)
  6. minInteger(Integer a, Integer b)
  7. minLength(String field, Integer from)
  8. minLength(String value, int min)
  9. minLengthExpression(final String operand, final long minLength)