| Class | Description |
|---|---|
| org.apache.commons.codec.digest.MurmurHash3.IncrementalHash32 |
Use IncrementalHash32x86. This corrects the processing of trailing bytes.
|
| org.apache.commons.codec.language.Caverphone |
1.5 Replaced by
Caverphone2, will be removed in 2.0. |
| Field | Description |
|---|---|
| org.apache.commons.codec.binary.BaseNCodec.PAD |
Use
BaseNCodec.pad. Will be removed in 2.0. |
| org.apache.commons.codec.Charsets.ISO_8859_1 |
Use
StandardCharsets.ISO_8859_1 instead. |
| org.apache.commons.codec.Charsets.US_ASCII |
Use
StandardCharsets.US_ASCII instead. |
| org.apache.commons.codec.Charsets.UTF_16 |
Use
StandardCharsets.UTF_16 instead. |
| org.apache.commons.codec.Charsets.UTF_16BE |
Use
StandardCharsets.UTF_16BE instead. |
| org.apache.commons.codec.Charsets.UTF_16LE |
Use
StandardCharsets.UTF_16LE instead. |
| org.apache.commons.codec.Charsets.UTF_8 |
Use
StandardCharsets.UTF_8 instead. |
| org.apache.commons.codec.digest.MurmurHash3.NULL_HASHCODE |
This is not used internally and will be removed in a future release.
|
| org.apache.commons.codec.net.URLCodec.charset |
TODO: This field will be changed to a private final Charset in 2.0. (CODEC-126)
|
| org.apache.commons.codec.net.URLCodec.WWW_FORM_URL |
1.11 Will be removed in 2.0 (CODEC-230)
|
| Constructor | Description |
|---|---|
| org.apache.commons.codec.digest.DigestUtils() |
since 1.11; only useful to preserve binary compatibility
|
| org.apache.commons.codec.digest.HmacUtils() |
since 1.11; only useful to preserve binary compatibility
|
| org.apache.commons.codec.StringEncoderComparator() |
Creating an instance without a
StringEncoder leads to a NullPointerException. Will be
removed in 2.0. |