Skip to content

Commit af0c673

Browse files
committed
Javadoc
1 parent eebf4e1 commit af0c673

File tree

19 files changed

+20
-21
lines changed

19 files changed

+20
-21
lines changed

commons-math-legacy-core/src/main/java/org/apache/commons/math4/legacy/core/MathArrays.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public static int distanceInf(int[] p1, int[] p2) {
286286
}
287287

288288
/**
289-
* Specification of ordering direction.
289+
* Enumerates specifications of ordering directions.
290290
*/
291291
public enum OrderDirection {
292292
/** Constant for increasing direction. */

commons-math-legacy-core/src/main/java/org/apache/commons/math4/legacy/core/dfp/DfpField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
public class DfpField implements Field<Dfp> {
2727

28-
/** Enumerate for rounding modes. */
28+
/** Enumerates rounding modes. */
2929
public enum RoundingMode {
3030

3131
/** Rounds toward zero (truncation). */

commons-math-legacy-exception/src/main/java/org/apache/commons/math4/legacy/exception/util/LocalizedFormats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.util.ResourceBundle;
2222

2323
/**
24-
* Enumeration for localized messages formats used in exceptions messages.
24+
* Enumerates localized messages formats used in exceptions messages.
2525
* <p>
2626
* The constants in this enumeration represent the available
2727
* formats as localized strings. These formats are intended to be

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/solvers/AllowedSolution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package org.apache.commons.math4.legacy.analysis.solvers;
1919

2020

21-
/** The kinds of solutions that a {@link BracketedUnivariateSolver
21+
/** Enumerates the kinds of solutions that a {@link BracketedUnivariateSolver
2222
* (bracketed univariate real) root-finding algorithm} may accept as solutions.
2323
* This basically controls whether or not under-approximations and
2424
* over-approximations are allowed.

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/fitting/leastsquares/GaussNewtonOptimizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
*/
4949
public class GaussNewtonOptimizer implements LeastSquaresOptimizer {
5050

51-
/** The decomposition algorithm to use to solve the normal equations. */
51+
/** Enumerates the decomposition algorithm to use to solve the normal equations. */
5252
//TODO move to linear package and expand options?
5353
public enum Decomposition {
5454
/**

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ml/clustering/KMeansPlusPlusClusterer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*/
4141
public class KMeansPlusPlusClusterer<T extends Clusterable> extends Clusterer<T> {
4242

43-
/** Strategies to use for replacing an empty cluster. */
43+
/** Enumerates strategies to use for replacing an empty cluster. */
4444
public enum EmptyClusterStrategy {
4545

4646
/** Split the cluster with largest distance variance. */

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/events/Action.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package org.apache.commons.math4.legacy.ode.events;
1919

20-
/** Enumerate for actions to be performed when an event occurs during ODE integration.
20+
/** Enumerates for actions to be performed when an event occurs during ODE integration.
2121
* @since 3.6
2222
*/
2323
public enum Action {

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/events/FilterType.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@
1919

2020
import org.apache.commons.math4.legacy.exception.MathInternalError;
2121

22-
/** Enumerate for {@link EventFilter filtering events}.
22+
/** Enumerates {@link EventFilter filtering events}.
2323
*
2424
* @since 3.2
2525
*/
26-
2726
public enum FilterType {
2827

2928
/** Constant for triggering only decreasing events.

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/sampling/StepNormalizerBounds.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package org.apache.commons.math4.legacy.ode.sampling;
1919

20-
/** {@link StepNormalizer Step normalizer} bounds settings. They influence
20+
/** Enumerates {@link StepNormalizer Step normalizer} bounds settings. They influence
2121
* whether the underlying fixed step size step handler is called for the first
2222
* and last points. Note that if the last point coincides with a normalized
2323
* point, then the underlying fixed step size step handler is always called,

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/sampling/StepNormalizerMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package org.apache.commons.math4.legacy.ode.sampling;
1919

2020

21-
/** {@link StepNormalizer Step normalizer} modes. Determines how the step size
21+
/** Enumerates {@link StepNormalizer Step normalizer} modes. Determines how the step size
2222
* is interpreted.
2323
* @see FieldStepNormalizer
2424
* @see StepNormalizer

0 commit comments

Comments
 (0)