Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
commons-lang-2.6.jar - Apache Commons Lang
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper utilities for the java.lang API.
JAR File Size and Download Location:
File name: commons-lang-2.6.jar File size: 284220 bytes Date modified: 01/13/2011 Download: Apache Commons Lang Website
✍: FYIcenter
⏎ org/apache/commons/lang/NumberRange.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.lang; import org.apache.commons.lang.text.StrBuilder; /** * <p>Represents a range of {@link Number} objects.</p> * * <p>This class uses <code>double</code> comparisons. This means that it * is unsuitable for dealing with large <code>Long</code>, <code>BigDecimal</code> * or <code>BigInteger</code> numbers.</p> * * @author Apache Software Foundation * @author <a href="mailto:chrise@esha.com">Christopher Elkins</a> * @since 1.0 * @version $Revision: 1057072 $ $Date: 2011-01-10 01:55:57 +0000 (Mon, 10 Jan 2011) $ * * @deprecated Use one of the Range classes in org.apache.commons.lang.math. * Class will be removed in Commons Lang 3.0. * */ public final class NumberRange { /* The minimum number in this range. */ private final Number min; /* The maximum number in this range. */ private final Number max; /** * <p>Constructs a new <code>NumberRange</code> using * <code>number</code> as both the minimum and maximum in * this range.</p> * * @param num the number to use for this range * @throws NullPointerException if the number is <code>null</code> */ public NumberRange(Number num) { if (num == null) { throw new NullPointerException("The number must not be null"); } this.min = num; this.max = num; } /** * <p>Constructs a new <code>NumberRange</code> with the specified * minimum and maximum numbers.</p> * * <p><em>If the maximum is less than the minimum, the range will be constructed * from the minimum value to the minimum value, not what you would expect!.</em></p> * * @param min the minimum number in this range * @param max the maximum number in this range * @throws NullPointerException if either the minimum or maximum number is * <code>null</code> */ public NumberRange(Number min, Number max) { if (min == null) { throw new NullPointerException("The minimum value must not be null"); } else if (max == null) { throw new NullPointerException("The maximum value must not be null"); } if (max.doubleValue() < min.doubleValue()) { this.min = this.max = min; } else { this.min = min; this.max = max; } } /** * <p>Returns the minimum number in this range.</p> * * @return the minimum number in this range */ public Number getMinimum() { return min; } /** * <p>Returns the maximum number in this range.</p> * * @return the maximum number in this range */ public Number getMaximum() { return max; } /** * <p>Tests whether the specified <code>number</code> occurs within * this range using <code>double</code> comparison.</p> * * @param number the number to test * @return <code>true</code> if the specified number occurs within this * range; otherwise, <code>false</code> */ public boolean includesNumber(Number number) { if (number == null) { return false; } else { return !(min.doubleValue() > number.doubleValue()) && !(max.doubleValue() < number.doubleValue()); } } /** * <p>Tests whether the specified range occurs entirely within this * range using <code>double</code> comparison.</p> * * @param range the range to test * @return <code>true</code> if the specified range occurs entirely within * this range; otherwise, <code>false</code> */ public boolean includesRange(NumberRange range) { if (range == null) { return false; } else { return includesNumber(range.min) && includesNumber(range.max); } } /** * <p>Tests whether the specified range overlaps with this range * using <code>double</code> comparison.</p> * * @param range the range to test * @return <code>true</code> if the specified range overlaps with this * range; otherwise, <code>false</code> */ public boolean overlaps(NumberRange range) { if (range == null) { return false; } else { return range.includesNumber(min) || range.includesNumber(max) || includesRange(range); } } /** * <p>Indicates whether some other <code>Object</code> is * "equal" to this one.</p> * * @param obj the reference object with which to compare * @return <code>true</code> if this object is the same as the obj * argument; <code>false</code> otherwise */ public boolean equals(Object obj) { if (obj == this) { return true; } else if (!(obj instanceof NumberRange)) { return false; } else { NumberRange range = (NumberRange)obj; return min.equals(range.min) && max.equals(range.max); } } /** * <p>Returns a hash code value for this object.</p> * * @return a hash code value for this object */ public int hashCode() { int result = 17; result = 37 * result + min.hashCode(); result = 37 * result + max.hashCode(); return result; } /** * <p>Returns the string representation of this range.</p> * * <p>This string is the string representation of the minimum and * maximum numbers in the range, separated by a hyphen. If a number * is negative, then it is enclosed in parentheses.</p> * * @return the string representation of this range */ public String toString() { StrBuilder sb = new StrBuilder(); if (min.doubleValue() < 0) { sb.append('(') .append(min) .append(')'); } else { sb.append(min); } sb.append('-'); if (max.doubleValue() < 0) { sb.append('(') .append(max) .append(')'); } else { sb.append(max); } return sb.toString(); } }
⏎ org/apache/commons/lang/NumberRange.java
⇒ commons-lang-1.0.1.jar - Apache Commons Lang
⇐ What Is commons-lang3-3.1.jar
2009-12-24, 80061👍, 0💬
Popular Posts:
JDK 11 jdk.crypto.ec.jmod is the JMOD file for JDK 11 Crypto EC module. JDK 11 Crypto EC module comp...
layout.jar is a component in iText Java library to provide layout functionalities. iText Java librar...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...
JDK 17 jdk.hotspot.agent.jmod is the JMOD file for JDK 17 Hotspot Agent module. JDK 17 Hotspot Agent...
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helpe...