Skip to content

Commit

Permalink
More javadocs.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-waltermire committed Dec 30, 2024
1 parent 5abd5ef commit 1c18e66
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ public class ArithmeticFunctionException
*/
public static final int OVERFLOW_UNDERFLOW_ERROR = 2;

/**
* Error message associated with {@link #DIVISION_BY_ZERO}.
*/
public static final String DIVISION_BY_ZERO_MESSAGE = "Division by zero";

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@

import edu.umd.cs.findbugs.annotations.NonNull;

/**
* A collection of comparison functions supporting value an general comparisons.
* <p>
* Based on the XPath 3.1
* <a href="https://www.w3.org/TR/xpath-31/#id-comparisons">comparison
* expressions</a> syntax.
*/
@SuppressWarnings({ "PMD.GodClass", "PMD.CyclomaticComplexity" })
public final class ComparisonFunctions {
/**
Expand Down

0 comments on commit 1c18e66

Please sign in to comment.