Java Integer Between between(int coord, int limit)

Here you can find the source of between(int coord, int limit)

Description

between

License

Open Source License

Declaration

public static boolean between(int coord, int limit) 

Method Source Code

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

public class Main {
    public static boolean between(int coord, int limit) {
        return (coord >= 0) && (coord < limit);
    }/*  w  w w.j a v a2 s . co  m*/
}

Related

  1. between(int column, int line, int startCol, int startLine, int endCol, int endLine)
  2. between(int floor, int x, int ceiling)
  3. between(int number, int from, int to)
  4. between(int value, int lower, int upper)
  5. between(int value, int min, int max)