org.apache.commons.math3.exception
public class NoBracketingException extends MathIllegalArgumentException
Modifier and Type | Field and Description |
---|---|
private double |
fHi
Value at higher end of the interval.
|
private double |
fLo
Value at lower end of the interval.
|
private double |
hi
Higher end of the interval.
|
private double |
lo
Lower end of the interval.
|
private static long |
serialVersionUID
Serializable version Id.
|
Constructor and Description |
---|
NoBracketingException(double lo,
double hi,
double fLo,
double fHi)
Construct the exception.
|
NoBracketingException(Localizable specific,
double lo,
double hi,
double fLo,
double fHi,
java.lang.Object... args)
Construct the exception with a specific context.
|
Modifier and Type | Method and Description |
---|---|
double |
getFHi()
Get the value at the higher end of the interval.
|
double |
getFLo()
Get the value at the lower end of the interval.
|
double |
getHi()
Get the higher end of the interval.
|
double |
getLo()
Get the lower end of the interval.
|
getContext, getLocalizedMessage, getMessage
private static final long serialVersionUID
private final double lo
private final double hi
private final double fLo
private final double fHi
public NoBracketingException(double lo, double hi, double fLo, double fHi)
lo
- Lower end of the interval.hi
- Higher end of the interval.fLo
- Value at lower end of the interval.fHi
- Value at higher end of the interval.public NoBracketingException(Localizable specific, double lo, double hi, double fLo, double fHi, java.lang.Object... args)
specific
- Contextual information on what caused the exception.lo
- Lower end of the interval.hi
- Higher end of the interval.fLo
- Value at lower end of the interval.fHi
- Value at higher end of the interval.args
- Additional arguments.public double getLo()
public double getHi()
public double getFLo()
public double getFHi()
Copyright (c) 2003-2013 Apache Software Foundation