Skip to content

Commit

Permalink
Fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
alex268 committed Dec 24, 2024
1 parent 2e52743 commit 279a641
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions table/src/main/java/tech/ydb/table/values/DecimalValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,26 @@ public class DecimalValue implements Value<DecimalType> {

/**
* @deprecated
* Positive infinity 10^{@value DecimalType#MAX_PRECISION}.
* Positive infinity 10^MAX_PRECISION.
* Use {@link DecimalType#getInf() } instead
*/
@Deprecated
public static final DecimalValue INF = new DecimalValue(
MAX_DECIMAL, 0x0013426172C74D82L, 0x2B878FE800000000L);

/**
* @deprecated
* Negative infinity -10^{@value DecimalType#MAX_PRECISI0ON}.
* Negative infinity -10^MAX_PRECISI0ON.
* Use {@link DecimalType#getNegInf() } instead
*/
@Deprecated
public static final DecimalValue NEG_INF = new DecimalValue(
MAX_DECIMAL, 0xFFECBD9E8D38B27DL, 0xD478701800000000L);

/**
* @deprecated
* Not a number 10^{@value DecimalType#MAX_PRECISION} + 1.
* Not a number 10^MAX_PRECISION + 1.
* Use {@link DecimalType#getNaN() } instead
*/
@Deprecated
public static final DecimalValue NAN = new DecimalValue(
Expand Down

0 comments on commit 279a641

Please sign in to comment.