Java Code Examples for org.apache.commons.math.exception.util.LocalizedFormats#OUT_OF_RANGE_SIMPLE

The following examples show how to use org.apache.commons.math.exception.util.LocalizedFormats#OUT_OF_RANGE_SIMPLE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OutOfRangeException.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Construct an exception from the mismatched dimensions.
 *
 * @param wrong Requested value.
 * @param lo Lower bound.
 * @param hi Higher bound.
 */
public OutOfRangeException(Number wrong,
                           Number lo,
                           Number hi) {
    super(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
    this.lo = lo;
    this.hi = hi;
}
 
Example 2
Source File: RandomKey.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
protected void checkValidity(java.util.List<Double> chromosomeRepresentation) throws InvalidRepresentationException {
    for (double val : chromosomeRepresentation) {
        if (val < 0 || val > 1) {
            throw new InvalidRepresentationException(
                    LocalizedFormats.OUT_OF_RANGE_SIMPLE, val, 0, 1);
        }
    }
}
 
Example 3
Source File: RandomKey.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
protected void checkValidity(java.util.List<Double> chromosomeRepresentation) throws InvalidRepresentationException {
    for (double val : chromosomeRepresentation) {
        if (val < 0 || val > 1) {
            throw new InvalidRepresentationException(
                    LocalizedFormats.OUT_OF_RANGE_SIMPLE, val, 0, 1);
        }
    }
}
 
Example 4
Source File: OutOfRangeException.java    From astor with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Construct an exception from the mismatched dimensions.
 *
 * @param wrong Requested value.
 * @param lo Lower bound.
 * @param hi Higher bound.
 */
public OutOfRangeException(Number wrong,
                           Number lo,
                           Number hi) {
    this(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
}
 
Example 5
Source File: OutOfRangeException.java    From astor with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Construct an exception from the mismatched dimensions.
 *
 * @param wrong Requested value.
 * @param lo Lower bound.
 * @param hi Higher bound.
 */
public OutOfRangeException(Number wrong,
                           Number lo,
                           Number hi) {
    this(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
}
 
Example 6
Source File: OutOfRangeException.java    From astor with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Construct an exception from the mismatched dimensions.
 *
 * @param wrong Requested value.
 * @param lo Lower bound.
 * @param hi Higher bound.
 */
public OutOfRangeException(Number wrong,
                           Number lo,
                           Number hi) {
    this(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
}