Skip to content

Commit dfdd809

Browse files
julienledemclaude
andcommitted
Fix javadoc HTML escaping in AlpEncoderDecoder
Escape <= characters as &lt;= in javadoc comments to avoid malformed HTML errors during documentation generation. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent bc5ebe4 commit dfdd809

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

parquet-column/src/main/java/org/apache/parquet/column/values/alp/AlpEncoderDecoder.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public static boolean isFloatException(float value) {
7474
*
7575
* @param value the float value
7676
* @param exponent the decimal exponent (0-10)
77-
* @param factor the decimal factor (0 <= factor <= exponent)
77+
* @param factor the decimal factor (0 &lt;= factor &lt;= exponent)
7878
* @return true if the value is an exception for this encoding
7979
*/
8080
public static boolean isFloatException(float value, int exponent, int factor) {
@@ -110,7 +110,7 @@ public static boolean isFloatException(float value, int exponent, int factor) {
110110
*
111111
* @param value the float value to encode
112112
* @param exponent the decimal exponent (0-10)
113-
* @param factor the decimal factor (0 <= factor <= exponent)
113+
* @param factor the decimal factor (0 &lt;= factor &lt;= exponent)
114114
* @return the encoded integer value
115115
*/
116116
public static int encodeFloat(float value, int exponent, int factor) {
@@ -128,7 +128,7 @@ public static int encodeFloat(float value, int exponent, int factor) {
128128
*
129129
* @param encoded the encoded integer value
130130
* @param exponent the decimal exponent (0-10)
131-
* @param factor the decimal factor (0 <= factor <= exponent)
131+
* @param factor the decimal factor (0 &lt;= factor &lt;= exponent)
132132
* @return the decoded float value
133133
*/
134134
public static float decodeFloat(int encoded, int exponent, int factor) {
@@ -182,7 +182,7 @@ public static boolean isDoubleException(double value) {
182182
*
183183
* @param value the double value
184184
* @param exponent the decimal exponent (0-18)
185-
* @param factor the decimal factor (0 <= factor <= exponent)
185+
* @param factor the decimal factor (0 &lt;= factor &lt;= exponent)
186186
* @return true if the value is an exception for this encoding
187187
*/
188188
public static boolean isDoubleException(double value, int exponent, int factor) {
@@ -218,7 +218,7 @@ public static boolean isDoubleException(double value, int exponent, int factor)
218218
*
219219
* @param value the double value to encode
220220
* @param exponent the decimal exponent (0-18)
221-
* @param factor the decimal factor (0 <= factor <= exponent)
221+
* @param factor the decimal factor (0 &lt;= factor &lt;= exponent)
222222
* @return the encoded long value
223223
*/
224224
public static long encodeDouble(double value, int exponent, int factor) {
@@ -236,7 +236,7 @@ public static long encodeDouble(double value, int exponent, int factor) {
236236
*
237237
* @param encoded the encoded long value
238238
* @param exponent the decimal exponent (0-18)
239-
* @param factor the decimal factor (0 <= factor <= exponent)
239+
* @param factor the decimal factor (0 &lt;= factor &lt;= exponent)
240240
* @return the decoded double value
241241
*/
242242
public static double decodeDouble(long encoded, int exponent, int factor) {

0 commit comments

Comments
 (0)