This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git
The following commit(s) were added to refs/heads/master by this push:
new f3b0eb54 Javadoc
f3b0eb54 is described below
commit f3b0eb5499266e99170bcc674c93d8a69790fc8b
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Mar 22 22:22:10 2026 -0700
Javadoc
---
.../java/org/apache/commons/codec/CodecPolicy.java | 2 +-
.../java/org/apache/commons/codec/binary/Base64.java | 2 +-
.../apache/commons/codec/digest/HmacAlgorithms.java | 19 +++++++------------
.../apache/commons/codec/language/bm/NameType.java | 5 ++---
.../apache/commons/codec/language/bm/RuleType.java | 2 +-
5 files changed, 12 insertions(+), 18 deletions(-)
diff --git a/src/main/java/org/apache/commons/codec/CodecPolicy.java
b/src/main/java/org/apache/commons/codec/CodecPolicy.java
index aa66e9b2..1710123b 100644
--- a/src/main/java/org/apache/commons/codec/CodecPolicy.java
+++ b/src/main/java/org/apache/commons/codec/CodecPolicy.java
@@ -18,7 +18,7 @@
package org.apache.commons.codec;
/**
- * Defines encoding and decoding policies.
+ * Enumerates encoding and decoding policies.
*
* @since 1.15
*/
diff --git a/src/main/java/org/apache/commons/codec/binary/Base64.java
b/src/main/java/org/apache/commons/codec/binary/Base64.java
index f9247d56..05c411d7 100644
--- a/src/main/java/org/apache/commons/codec/binary/Base64.java
+++ b/src/main/java/org/apache/commons/codec/binary/Base64.java
@@ -168,7 +168,7 @@ public class Base64 extends BaseNCodec {
}
/**
- * Defines the Base64 table format to be used on decoding.
+ * Enumerates the Base64 table format to be used on decoding.
* <p>
* By default, the method uses {@link DecodeTableFormat#MIXED} approach,
allowing a seamless handling of both {@link DecodeTableFormat#URL_SAFE} and
* {@link DecodeTableFormat#STANDARD} base64 options.
diff --git a/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
b/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
index 2ab7d661..9ae48e51 100644
--- a/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
+++ b/src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java
@@ -18,22 +18,17 @@
package org.apache.commons.codec.digest;
/**
- * Standard {@link HmacUtils} algorithm names from the <cite>Java Cryptography
Architecture Standard Algorithm Name
- * Documentation</cite>.
- *
+ * Enumerates the standard {@link HmacUtils} algorithm names from the
<cite>Java Cryptography Architecture Standard Algorithm Name
Documentation</cite>.
* <p>
* <strong>Note: Not all JCE implementations support all the algorithms in
this enum.</strong>
* </p>
*
- * @see <a
href="https://docs.oracle.com/javase/8/docs/technotes/guides/security/SunProviders.html#SunJCEProvider">
Java
- * 8 Cryptography Architecture Sun Providers Documentation</a>
- * @see <a href=
- *
"https://docs.oracle.com/en/java/javase/11/security/oracle-providers.html#GUID-A47B1249-593C-4C38-A0D0-68FA7681E0A7">
- * Java 11 Cryptography Architecture Sun Providers Documentation</a>
- * @see <a href=
- *
"https://docs.oracle.com/en/java/javase/17/security/oracle-providers.html#GUID-A47B1249-593C-4C38-A0D0-68FA7681E0A7">
- * Java 17 Cryptography Architecture Sun Providers Documentation</a>
- *
+ * @see <a
href="https://docs.oracle.com/javase/8/docs/technotes/guides/security/SunProviders.html#SunJCEProvider">
Java 8 Cryptography Architecture Sun
+ * Providers Documentation</a>
+ * @see <a href=
"https://docs.oracle.com/en/java/javase/11/security/oracle-providers.html#GUID-A47B1249-593C-4C38-A0D0-68FA7681E0A7">
Java 11 Cryptography
+ * Architecture Sun Providers Documentation</a>
+ * @see <a href=
"https://docs.oracle.com/en/java/javase/17/security/oracle-providers.html#GUID-A47B1249-593C-4C38-A0D0-68FA7681E0A7">
Java 17 Cryptography
+ * Architecture Sun Providers Documentation</a>
* @since 1.10
*/
public enum HmacAlgorithms {
diff --git a/src/main/java/org/apache/commons/codec/language/bm/NameType.java
b/src/main/java/org/apache/commons/codec/language/bm/NameType.java
index 73c55245..6fb0d1b8 100644
--- a/src/main/java/org/apache/commons/codec/language/bm/NameType.java
+++ b/src/main/java/org/apache/commons/codec/language/bm/NameType.java
@@ -18,9 +18,8 @@
package org.apache.commons.codec.language.bm;
/**
- * Supported types of names. Unless you are matching particular family names,
use {@link #GENERIC}. The
- * {@code GENERIC} NameType should work reasonably well for non-name words.
The other encodings are
- * specifically tuned to family names, and may not work well at all for
general text.
+ * Enumerates the supported types of names. Unless you are matching particular
family names, use {@link #GENERIC}. The {@code GENERIC} NameType should work
+ * reasonably well for non-name words. The other encodings are specifically
tuned to family names, and may not work well at all for general text.
*
* @since 1.6
*/
diff --git a/src/main/java/org/apache/commons/codec/language/bm/RuleType.java
b/src/main/java/org/apache/commons/codec/language/bm/RuleType.java
index 8602e979..710023ac 100644
--- a/src/main/java/org/apache/commons/codec/language/bm/RuleType.java
+++ b/src/main/java/org/apache/commons/codec/language/bm/RuleType.java
@@ -18,7 +18,7 @@
package org.apache.commons.codec.language.bm;
/**
- * Types of rule.
+ * Enumerates the types of rule.
*
* @since 1.6
*/