Uses of Interface
org.apache.commons.math.exception.util.Localizable
-
Packages that use Localizable Package Description 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 Modifier and Type Method Description Localizable
MathException. getGeneralPattern()
Gets the localizable pattern used to build the general part of the message of this throwable.Localizable
MathRuntimeException. getGeneralPattern()
Gets the localizable pattern used to build the general 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.Localizable
MathRuntimeException. 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 Modifier and Type Method Description static java.lang.ArithmeticException
MathRuntimeException. createArithmeticException(Localizable pattern, java.lang.Object... arguments)
Constructs a newArithmeticException
with specified formatted detail message.static java.lang.ArrayIndexOutOfBoundsException
MathRuntimeException. createArrayIndexOutOfBoundsException(Localizable pattern, java.lang.Object... arguments)
Constructs a newArrayIndexOutOfBoundsException
with specified formatted detail message.static java.util.ConcurrentModificationException
MathRuntimeException. createConcurrentModificationException(Localizable pattern, java.lang.Object... arguments)
Constructs a newConcurrentModificationException
with specified formatted detail message.static java.io.EOFException
MathRuntimeException. createEOFException(Localizable pattern, java.lang.Object... arguments)
Constructs a newEOFException
with specified formatted detail message.static java.lang.IllegalArgumentException
MathRuntimeException. createIllegalArgumentException(Localizable pattern, java.lang.Object... arguments)
Constructs a newIllegalArgumentException
with specified formatted detail message.static java.lang.IllegalStateException
MathRuntimeException. createIllegalStateException(Localizable pattern, java.lang.Object... arguments)
Constructs a newIllegalStateException
with specified formatted detail message.static java.util.NoSuchElementException
MathRuntimeException. createNoSuchElementException(Localizable pattern, java.lang.Object... arguments)
Constructs a newNoSuchElementException
with specified formatted detail message.static java.lang.NullPointerException
MathRuntimeException. createNullPointerException(Localizable pattern, java.lang.Object... arguments)
Deprecated.in 2.2.static java.text.ParseException
MathRuntimeException. createParseException(int offset, Localizable pattern, java.lang.Object... arguments)
Constructs a newParseException
with specified formatted detail message.static java.lang.UnsupportedOperationException
MathRuntimeException. createUnsupportedOperationException(Localizable pattern, java.lang.Object... arguments)
Deprecated.in 2.2.Constructors in org.apache.commons.math with parameters of type Localizable Constructor Description ConvergenceException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... arguments)
Constructs an exception with specified formatted detail message and root cause.ConvergenceException(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(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(java.lang.Throwable cause, 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.MathException(java.lang.Throwable rootCause, Localizable pattern, java.lang.Object... arguments)
Constructs a newMathException
with specified formatted detail message and nestedThrowable
root cause.MathException(Localizable pattern, java.lang.Object... arguments)
Constructs a newMathException
with specified formatted detail message.MathRuntimeException(java.lang.Throwable rootCause, Localizable pattern, java.lang.Object... arguments)
Constructs a newMathRuntimeException
with specified formatted detail message and nestedThrowable
root cause.MathRuntimeException(Localizable pattern, java.lang.Object... arguments)
Constructs a newMathRuntimeException
with specified formatted detail message.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 Constructor Description 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 Modifier and Type Method Description Localizable
MathIllegalArgumentException. 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
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
MathIllegalArgumentException. 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.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.Constructors in org.apache.commons.math.exception with parameters of type Localizable Constructor Description 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 general, java.lang.Object... args)
MathIllegalArgumentException(Localizable specific, Localizable general, java.lang.Object... args)
MathIllegalNumberException(Localizable general, java.lang.Number wrong, java.lang.Object... arguments)
Construct an exception.MathIllegalNumberException(Localizable specific, Localizable general, java.lang.Number wrong, java.lang.Object... arguments)
Construct an exception.MathIllegalStateException(java.lang.Throwable cause, Localizable general, java.lang.Object... args)
Simple constructor.MathIllegalStateException(java.lang.Throwable cause, Localizable specific, Localizable general, java.lang.Object... args)
Simple constructor.MathIllegalStateException(Localizable general, java.lang.Object... args)
MathIllegalStateException(Localizable specific, 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 Modifier and Type Class Description class
DummyLocalizable
Dummy implementation of theLocalizable
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 Modifier and Type Method Description 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.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. -
Uses of Localizable in org.apache.commons.math.geometry
Constructors in org.apache.commons.math.geometry with parameters of type Localizable Constructor Description 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 Constructor Description 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 Constructor Description 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 Constructor Description 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 Constructor Description OptimizationException(Localizable specifier, java.lang.Object... parts)
Deprecated.Simple constructor.
-