Java org.apache.commons.lang.math DoubleRange fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang.math DoubleRange fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang.math DoubleRange.

The text is from its open source code.

Constructor

DoubleRange(double number1, double 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).

DoubleRange(Number number1, Number 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).

Method

doublegetMaximumDouble()

Gets the maximum number in this range as a double.

doublegetMinimumDouble()

Gets the minimum number in this range as a double.