Java Code Examples for org.apache.commons.math3.exception.util.LocalizedFormats#UNKNOWN_MODE

The following examples show how to use org.apache.commons.math3.exception.util.LocalizedFormats#UNKNOWN_MODE . 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: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 * @throws MathIllegalStateException if mode is not recognized
 * @throws MathIllegalArgumentException if the underlying random generator thwrows one
 */
public double getNext() throws IOException, MathIllegalStateException, MathIllegalArgumentException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 2
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 * @throws MathIllegalStateException if mode is not recognized
 * @throws MathIllegalArgumentException if the underlying random generator thwrows one
 */
public double getNext() throws IOException, MathIllegalStateException, MathIllegalArgumentException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 3
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 */
public double getNext() throws IOException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 4
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 * @throws MathIllegalStateException if mode is not recognized
 * @throws MathIllegalArgumentException if the underlying random generator thwrows one
 */
public double getNext() throws IOException, MathIllegalStateException, MathIllegalArgumentException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 5
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 */
public double getNext() throws IOException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 6
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 * @throws MathIllegalStateException if mode is not recognized
 * @throws MathIllegalArgumentException if the underlying random generator thwrows one
 */
public double getNext() throws IOException, MathIllegalStateException, MathIllegalArgumentException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 7
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 * @throws MathIllegalStateException if mode is not recognized
 * @throws MathIllegalArgumentException if the underlying random generator thwrows one
 */
public double getNext() throws IOException, MathIllegalStateException, MathIllegalArgumentException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}
 
Example 8
Source File: ValueServer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the next generated value, generated according
 * to the mode value (see MODE constants).
 *
 * @return generated value
 * @throws IOException in REPLAY_MODE if a file I/O error occurs
 * @throws MathIllegalStateException if mode is not recognized
 * @throws MathIllegalArgumentException if the underlying random generator thwrows one
 */
public double getNext() throws IOException, MathIllegalStateException, MathIllegalArgumentException {
    switch (mode) {
        case DIGEST_MODE: return getNextDigest();
        case REPLAY_MODE: return getNextReplay();
        case UNIFORM_MODE: return getNextUniform();
        case EXPONENTIAL_MODE: return getNextExponential();
        case GAUSSIAN_MODE: return getNextGaussian();
        case CONSTANT_MODE: return mu;
        default: throw new MathIllegalStateException(
                LocalizedFormats.UNKNOWN_MODE,
                mode,
                "DIGEST_MODE",   DIGEST_MODE,   "REPLAY_MODE",      REPLAY_MODE,
                "UNIFORM_MODE",  UNIFORM_MODE,  "EXPONENTIAL_MODE", EXPONENTIAL_MODE,
                "GAUSSIAN_MODE", GAUSSIAN_MODE, "CONSTANT_MODE",    CONSTANT_MODE);
    }
}