All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.lang.math.DoubleRange Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * 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.math;

import java.io.Serializable;

/**
 * 

DoubleRange represents an inclusive range of doubles.

* * @author Stephen Colebourne * @since 2.0 * @version $Id: DoubleRange.java 437554 2006-08-28 06:21:41Z bayard $ */ public final class DoubleRange extends Range implements Serializable { /** * Required for serialization support. * * @see java.io.Serializable */ private static final long serialVersionUID = 71849363892740L; /** * The minimum number in this range (inclusive). */ private final double min; /** * The maximum number in this range (inclusive). */ private final double max; /** * Cached output minObject (class is immutable). */ private transient Double minObject = null; /** * Cached output maxObject (class is immutable). */ private transient Double maxObject = null; /** * Cached output hashCode (class is immutable). */ private transient int hashCode = 0; /** * Cached output toString (class is immutable). */ private transient String toString = null; /** *

Constructs a new DoubleRange using the specified * number as both the minimum and maximum in this range.

* * @param number the number to use for this range * @throws IllegalArgumentException if the number is NaN */ public DoubleRange(double number) { super(); if (Double.isNaN(number)) { throw new IllegalArgumentException("The number must not be NaN"); } this.min = number; this.max = number; } /** *

Constructs a new DoubleRange using the specified * number as both the minimum and maximum in this range.

* * @param number the number to use for this range, must not * be null * @throws IllegalArgumentException if the number is null * @throws IllegalArgumentException if the number is NaN */ public DoubleRange(Number number) { super(); if (number == null) { throw new IllegalArgumentException("The number must not be null"); } this.min = number.doubleValue(); this.max = number.doubleValue(); if (Double.isNaN(min) || Double.isNaN(max)) { throw new IllegalArgumentException("The number must not be NaN"); } if (number instanceof Double) { this.minObject = (Double) number; this.maxObject = (Double) number; } } /** *

Constructs a new DoubleRange with the specified * minimum and maximum numbers (both inclusive).

* *

The arguments may be passed in the order (min,max) or (max,min). The * getMinimum and getMaximum methods will return the correct values.

* * @param number1 first number that defines the edge of the range, inclusive * @param number2 second number that defines the edge of the range, inclusive * @throws IllegalArgumentException if either number is NaN */ public DoubleRange(double number1, double number2) { super(); if (Double.isNaN(number1) || Double.isNaN(number2)) { throw new IllegalArgumentException("The numbers must not be NaN"); } if (number2 < number1) { this.min = number2; this.max = number1; } else { this.min = number1; this.max = number2; } } /** *

Constructs a new DoubleRange with the specified * minimum and maximum numbers (both inclusive).

* *

The arguments may be passed in the order (min,max) or (max,min). The * getMinimum and getMaximum methods will return the correct values.

* * @param number1 first number that defines the edge of the range, inclusive * @param number2 second number that defines the edge of the range, inclusive * @throws IllegalArgumentException if either number is null * @throws IllegalArgumentException if either number is NaN */ public DoubleRange(Number number1, Number number2) { super(); if (number1 == null || number2 == null) { throw new IllegalArgumentException("The numbers must not be null"); } double number1val = number1.doubleValue(); double number2val = number2.doubleValue(); if (Double.isNaN(number1val) || Double.isNaN(number2val)) { throw new IllegalArgumentException("The numbers must not be NaN"); } if (number2val < number1val) { this.min = number2val; this.max = number1val; if (number2 instanceof Double) { this.minObject = (Double) number2; } if (number1 instanceof Double) { this.maxObject = (Double) number1; } } else { this.min = number1val; this.max = number2val; if (number1 instanceof Double) { this.minObject = (Double) number1; } if (number2 instanceof Double) { this.maxObject = (Double) number2; } } } // Accessors //-------------------------------------------------------------------- /** *

Returns the minimum number in this range.

* * @return the minimum number in this range */ public Number getMinimumNumber() { if (minObject == null) { minObject = new Double(min); } return minObject; } /** *

Gets the minimum number in this range as a long.

* *

This conversion can lose information for large values or decimals.

* * @return the minimum number in this range */ public long getMinimumLong() { return (long) min; } /** *

Gets the minimum number in this range as a int.

* *

This conversion can lose information for large values or decimals.

* * @return the minimum number in this range */ public int getMinimumInteger() { return (int) min; } /** *

Gets the minimum number in this range as a double.

* * @return the minimum number in this range */ public double getMinimumDouble() { return min; } /** *

Gets the minimum number in this range as a float.

* *

This conversion can lose information for large values.

* * @return the minimum number in this range */ public float getMinimumFloat() { return (float) min; } /** *

Returns the maximum number in this range.

* * @return the maximum number in this range */ public Number getMaximumNumber() { if (maxObject == null) { maxObject = new Double(max); } return maxObject; } /** *

Gets the maximum number in this range as a long.

* *

This conversion can lose information for large values or decimals.

* * @return the maximum number in this range */ public long getMaximumLong() { return (long) max; } /** *

Gets the maximum number in this range as a int.

* *

This conversion can lose information for large values or decimals.

* * @return the maximum number in this range */ public int getMaximumInteger() { return (int) max; } /** *

Gets the maximum number in this range as a double.

* * @return the maximum number in this range */ public double getMaximumDouble() { return max; } /** *

Gets the maximum number in this range as a float.

* *

This conversion can lose information for large values.

* * @return the maximum number in this range */ public float getMaximumFloat() { return (float) max; } // Tests //-------------------------------------------------------------------- /** *

Tests whether the specified number occurs within * this range using double comparison.

* *

null is handled and returns false.

* * @param number the number to test, may be null * @return true if the specified number occurs within this range */ public boolean containsNumber(Number number) { if (number == null) { return false; } return containsDouble(number.doubleValue()); } /** *

Tests whether the specified double occurs within * this range using double comparison.

* *

This implementation overrides the superclass for performance as it is * the most common case.

* * @param value the double to test * @return true if the specified number occurs within this * range by double comparison */ public boolean containsDouble(double value) { return value >= min && value <= max; } // Range tests //-------------------------------------------------------------------- /** *

Tests whether the specified range occurs entirely within this range * using double comparison.

* *

null is handled and returns false.

* * @param range the range to test, may be null * @return true if the specified range occurs entirely within this range * @throws IllegalArgumentException if the range is not of this type */ public boolean containsRange(Range range) { if (range == null) { return false; } return containsDouble(range.getMinimumDouble()) && containsDouble(range.getMaximumDouble()); } /** *

Tests whether the specified range overlaps with this range * using double comparison.

* *

null is handled and returns false.

* * @param range the range to test, may be null * @return true if the specified range overlaps with this range */ public boolean overlapsRange(Range range) { if (range == null) { return false; } return range.containsDouble(min) || range.containsDouble(max) || containsDouble(range.getMinimumDouble()); } // Basics //-------------------------------------------------------------------- /** *

Compares this range to another object to test if they are equal.

. * *

To be equal, the class, minimum and maximum must be equal.

* * @param obj the reference object with which to compare * @return true if this object is equal */ public boolean equals(Object obj) { if (obj == this) { return true; } if (obj instanceof DoubleRange == false) { return false; } DoubleRange range = (DoubleRange) obj; return (Double.doubleToLongBits(min) == Double.doubleToLongBits(range.min) && Double.doubleToLongBits(max) == Double.doubleToLongBits(range.max)); } /** *

Gets a hashCode for the range.

* * @return a hash code value for this object */ public int hashCode() { if (hashCode == 0) { hashCode = 17; hashCode = 37 * hashCode + getClass().hashCode(); long lng = Double.doubleToLongBits(min); hashCode = 37 * hashCode + ((int) (lng ^ (lng >> 32))); lng = Double.doubleToLongBits(max); hashCode = 37 * hashCode + ((int) (lng ^ (lng >> 32))); } return hashCode; } /** *

Gets the range as a String.

* *

The format of the String is 'Range[min,max]'.

* * @return the String representation of this range */ public String toString() { if (toString == null) { StringBuffer buf = new StringBuffer(32); buf.append("Range["); buf.append(min); buf.append(','); buf.append(max); buf.append(']'); toString = buf.toString(); } return toString; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy