Uses of Interface
org.apache.commons.math.exception.util.Localizable

Packages that use Localizable
org.apache.commons.math Common classes used throughout the commons-math library. 
org.apache.commons.math.estimation This package provided classes to solve estimation problems, it is deprecated since 2.0. 
org.apache.commons.math.exception Specialized exceptions for algorithms errors. 
org.apache.commons.math.exception.util Classes supporting exception localization. 
org.apache.commons.math.geometry This package provides basic 3D geometry components. 
org.apache.commons.math.linear Linear algebra support. 
org.apache.commons.math.ode This package provides classes to solve Ordinary Differential Equations problems. 
org.apache.commons.math.ode.events This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration. 
org.apache.commons.math.optimization This package provides common interfaces for the optimization algorithms provided in sub-packages. 
 

Uses of Localizable in org.apache.commons.math
 

Methods in org.apache.commons.math that return Localizable
 Localizable MathRuntimeException.getGeneralPattern()
          Gets the localizable pattern used to build the general part of the message of this throwable.
 Localizable MathException.getGeneralPattern()
          Gets the localizable pattern used to build the general part of the message of this throwable.
 Localizable MathRuntimeException.getSpecificPattern()
          Gets the localizable pattern used to build the specific part of the message of this throwable.
 Localizable MathException.getSpecificPattern()
          Gets the localizable pattern used to build the specific part of the message of this throwable.
 

Methods in org.apache.commons.math with parameters of type Localizable
static java.lang.ArithmeticException MathRuntimeException.createArithmeticException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new ArithmeticException with specified formatted detail message.
static java.lang.ArrayIndexOutOfBoundsException MathRuntimeException.createArrayIndexOutOfBoundsException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new ArrayIndexOutOfBoundsException with specified formatted detail message.
static java.util.ConcurrentModificationException MathRuntimeException.createConcurrentModificationException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new ConcurrentModificationException with specified formatted detail message.
static java.io.EOFException MathRuntimeException.createEOFException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new EOFException with specified formatted detail message.
static java.lang.IllegalArgumentException MathRuntimeException.createIllegalArgumentException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new IllegalArgumentException with specified formatted detail message.
static java.lang.IllegalStateException MathRuntimeException.createIllegalStateException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new IllegalStateException with specified formatted detail message.
static java.util.NoSuchElementException MathRuntimeException.createNoSuchElementException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new NoSuchElementException with specified formatted detail message.
static java.lang.NullPointerException MathRuntimeException.createNullPointerException(Localizable pattern, java.lang.Object... arguments)
          Deprecated. in 2.2. Checks for "null" must not be performed in Commons-Math.
static java.text.ParseException MathRuntimeException.createParseException(int offset, Localizable pattern, java.lang.Object... arguments)
          Constructs a new ParseException with specified formatted detail message.
static java.lang.UnsupportedOperationException MathRuntimeException.createUnsupportedOperationException(Localizable pattern, java.lang.Object... arguments)
          Deprecated. in 2.2. Please use MathUnsupportedOperationException instead.
 

Constructors in org.apache.commons.math with parameters of type Localizable
ConvergenceException(Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message.
ConvergenceException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message and root cause.
FunctionEvaluationException(double[] argument, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message.
FunctionEvaluationException(double argument, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message.
FunctionEvaluationException(java.lang.Throwable cause, double[] argument, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message and root cause.
FunctionEvaluationException(java.lang.Throwable cause, double argument, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message and root cause.
MathConfigurationException(Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message.
MathConfigurationException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message and root cause.
MathException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new MathException with specified formatted detail message.
MathException(java.lang.Throwable rootCause, Localizable pattern, java.lang.Object... arguments)
          Constructs a new MathException with specified formatted detail message and nested Throwable root cause.
MathRuntimeException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new MathRuntimeException with specified formatted detail message.
MathRuntimeException(java.lang.Throwable rootCause, Localizable pattern, java.lang.Object... arguments)
          Constructs a new MathRuntimeException with specified formatted detail message and nested Throwable root cause.
MaxEvaluationsExceededException(int maxEvaluations, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message.
MaxIterationsExceededException(int maxIterations, Localizable pattern, java.lang.Object... arguments)
          Constructs an exception with specified formatted detail message.
 

Uses of Localizable in org.apache.commons.math.estimation
 

Constructors in org.apache.commons.math.estimation with parameters of type Localizable
EstimationException(Localizable specifier, java.lang.Object... parts)
          Deprecated. Simple constructor.
 

Uses of Localizable in org.apache.commons.math.exception
 

Methods in org.apache.commons.math.exception that return Localizable
 Localizable MathIllegalArgumentException.getGeneralPattern()
          Gets the localizable pattern used to build the general part of the message of this throwable.
 Localizable MathThrowable.getGeneralPattern()
          Gets the localizable pattern used to build the general part of the message of this throwable.
 Localizable MathUnsupportedOperationException.getGeneralPattern()
          Gets the localizable pattern used to build the general part of the message of this throwable.
 Localizable MathIllegalStateException.getGeneralPattern()
          Gets the localizable pattern used to build the general part of the message of this throwable.
 Localizable MathIllegalArgumentException.getSpecificPattern()
          Gets the localizable pattern used to build the specific part of the message of this throwable.
 Localizable MathThrowable.getSpecificPattern()
          Gets the localizable pattern used to build the specific part of the message of this throwable.
 Localizable MathUnsupportedOperationException.getSpecificPattern()
          Gets the localizable pattern used to build the specific part of the message of this throwable.
 Localizable MathIllegalStateException.getSpecificPattern()
          Gets the localizable pattern used to build the specific part of the message of this throwable.
 

Constructors in org.apache.commons.math.exception with parameters of type Localizable
ConvergenceException(Localizable specific)
          Construct the exception with a specific context.
ConvergenceException(Localizable specific, java.lang.Object... args)
          Construct the exception with a specific context and arguments.
MathIllegalArgumentException(Localizable specific, Localizable general, java.lang.Object... args)
           
MathIllegalArgumentException(Localizable general, java.lang.Object... args)
           
MathIllegalNumberException(Localizable specific, Localizable general, java.lang.Number wrong, java.lang.Object... arguments)
          Construct an exception.
MathIllegalNumberException(Localizable general, java.lang.Number wrong, java.lang.Object... arguments)
          Construct an exception.
MathIllegalStateException(Localizable specific, Localizable general, java.lang.Object... args)
          Simple constructor.
MathIllegalStateException(Localizable general, java.lang.Object... args)
           
MathIllegalStateException(java.lang.Throwable cause, Localizable specific, Localizable general, java.lang.Object... args)
          Simple constructor.
MathIllegalStateException(java.lang.Throwable cause, Localizable general, java.lang.Object... args)
          Simple constructor.
MathUnsupportedOperationException(Localizable specific, java.lang.Object... args)
           
NoDataException(Localizable specific)
          Construct the exception with a specific context.
NotPositiveException(Localizable specific, java.lang.Number value)
          Construct the exception with a specific context.
NotStrictlyPositiveException(Localizable specific, java.lang.Number value)
          Construct the exception with a specific context.
NullArgumentException(Localizable specific)
           
NumberIsTooLargeException(Localizable specific, java.lang.Number wrong, java.lang.Number max, boolean boundIsAllowed)
          Construct the exception with a specific context.
NumberIsTooSmallException(Localizable specific, java.lang.Number wrong, java.lang.Number min, boolean boundIsAllowed)
          Construct the exception with a specific context.
ZeroException(Localizable specific)
          Construct the exception with a specific context.
 

Uses of Localizable in org.apache.commons.math.exception.util
 

Classes in org.apache.commons.math.exception.util that implement Localizable
 class DummyLocalizable
          Dummy implementation of the Localizable interface, without localization.
 class LocalizedFormats
          Enumeration for localized messages formats used in exceptions messages.
 

Methods in org.apache.commons.math.exception.util with parameters of type Localizable
static java.lang.String MessageFactory.buildMessage(java.util.Locale locale, Localizable specific, Localizable general, java.lang.Object... arguments)
          Builds a message string by from two patterns (specific and general) and an argument list.
static java.lang.String MessageFactory.buildMessage(java.util.Locale locale, Localizable pattern, java.lang.Object... arguments)
          Builds a message string by from a pattern and its arguments.
 

Uses of Localizable in org.apache.commons.math.geometry
 

Constructors in org.apache.commons.math.geometry with parameters of type Localizable
NotARotationMatrixException(Localizable specifier, java.lang.Object... parts)
          Simple constructor.
 

Uses of Localizable in org.apache.commons.math.linear
 

Constructors in org.apache.commons.math.linear with parameters of type Localizable
InvalidMatrixException(Localizable pattern, java.lang.Object... arguments)
          Construct an exception with the given message.
MatrixIndexException(Localizable pattern, java.lang.Object... arguments)
          Constructs a new instance with specified formatted detail message.
MatrixVisitorException(Localizable pattern, java.lang.Object[] arguments)
          Constructs a new instance with specified formatted detail message.
 

Uses of Localizable in org.apache.commons.math.ode
 

Constructors in org.apache.commons.math.ode with parameters of type Localizable
DerivativeException(Localizable specifier, java.lang.Object... parts)
          Simple constructor.
IntegratorException(Localizable specifier, java.lang.Object... parts)
          Simple constructor.
 

Uses of Localizable in org.apache.commons.math.ode.events
 

Constructors in org.apache.commons.math.ode.events with parameters of type Localizable
EventException(Localizable specifier, java.lang.Object... parts)
          Simple constructor.
 

Uses of Localizable in org.apache.commons.math.optimization
 

Constructors in org.apache.commons.math.optimization with parameters of type Localizable
OptimizationException(Localizable specifier, java.lang.Object... parts)
          Deprecated. Simple constructor.
 



Copyright © 2003-2011 Apache Software Foundation. All Rights Reserved.