[MATH-962] Added clarification to the javadoc of VectorFormat and derived classes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1467801 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-04-14 16:19:33 +00:00
parent 2d1614a207
commit 2188e31260
5 changed files with 16 additions and 0 deletions

View File

@ -51,6 +51,10 @@ If the output is not quite correct, check for invisible trailing spaces!
</properties>
<body>
<release version="x.y" date="TBD" description="TBD">
<action dev="tn" type="fix" issue="MATH-962">
Added clarification to the javadoc of "VectorFormat" and derived classes
in case "," is used as a separator.
</action>
<action dev="tn" type="add" issue="MATH-898">
Added "FuzzyKMeansClusterer" to "o.a.c.m.ml.clustering" package.
</action>

View File

@ -35,6 +35,9 @@ import org.apache.commons.math3.exception.MathParseException;
* " { 1 ; 1 ; 1 } " will be parsed without error and the same vector will be
* returned. In the second case, however, the parse position after parsing will be
* just after the closing curly brace, i.e. just before the trailing space.</p>
* <p><b>Note:</b> using "," as a separator may interfere with the grouping separator
* of the default {@link NumberFormat} for the current locale. Thus it is advised
* to use a {@link NumberFormat} instance with disabled grouping in such a case.</p>
*
* @param <S> Type of the space.
* @version $Id$

View File

@ -37,6 +37,9 @@ import org.apache.commons.math3.util.CompositeFormat;
* " { 1 } " will be parsed without error and the same vector will be
* returned. In the second case, however, the parse position after parsing will be
* just after the closing curly brace, i.e. just before the trailing space.</p>
* <p><b>Note:</b> using "," as a separator may interfere with the grouping separator
* of the default {@link NumberFormat} for the current locale. Thus it is advised
* to use a {@link NumberFormat} instance with disabled grouping in such a case.</p>
*
* @version $Id$
* @since 3.0

View File

@ -37,6 +37,9 @@ import org.apache.commons.math3.util.CompositeFormat;
* " { 1 ; 1 ; 1 } " will be parsed without error and the same vector will be
* returned. In the second case, however, the parse position after parsing will be
* just after the closing curly brace, i.e. just before the trailing space.</p>
* <p><b>Note:</b> using "," as a separator may interfere with the grouping separator
* of the default {@link NumberFormat} for the current locale. Thus it is advised
* to use a {@link NumberFormat} instance with disabled grouping in such a case.</p>
*
* @version $Id$
*/

View File

@ -37,6 +37,9 @@ import org.apache.commons.math3.util.CompositeFormat;
* " { 1 ; 1 } " will be parsed without error and the same vector will be
* returned. In the second case, however, the parse position after parsing will be
* just after the closing curly brace, i.e. just before the trailing space.</p>
* <p><b>Note:</b> using "," as a separator may interfere with the grouping separator
* of the default {@link NumberFormat} for the current locale. Thus it is advised
* to use a {@link NumberFormat} instance with disabled grouping in such a case.</p>
*
* @version $Id$
* @since 3.0