HomeSort by relevance Sort by last modified time
    Searched defs:boundIsAllowed (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
NumberIsTooLargeException.java 40 private final boolean boundIsAllowed;
47 * @param boundIsAllowed if true the maximum is included in the allowed range.
51 boolean boundIsAllowed) {
52 this(null, wrong, max, boundIsAllowed);
60 * @param boundIsAllowed if true the maximum is included in the allowed range.
65 boolean boundIsAllowed) {
67 boundIsAllowed ?
73 this.boundIsAllowed = boundIsAllowed;
80 return boundIsAllowed;
    [all...]
NumberIsTooSmallException.java 40 private final boolean boundIsAllowed;
47 * @param boundIsAllowed Whether {@code min} is included in the allowed range.
51 boolean boundIsAllowed) {
52 this(null, wrong, min, boundIsAllowed);
61 * @param boundIsAllowed Whether {@code min} is included in the allowed range.
66 boolean boundIsAllowed) {
68 boundIsAllowed ?
74 this.boundIsAllowed = boundIsAllowed;
81 return boundIsAllowed;
    [all...]

Completed in 64 milliseconds