@@ -756,10 +756,10 @@ public String asText(String defaultValue) {
756
756
757
757
/**
758
758
* Method similar to {@link #shortValue()}, but that will return empty
759
- * {@link Optional<Short>} ({@code Optional.empty()}) if this node cannot
759
+ * {@code Optional<Short>} ({@code Optional.empty()}) if this node cannot
760
760
* be converted to Java {@code short}.
761
761
*
762
- * @return Java {@code short} value this node represents, as {@link Optional<Short>},
762
+ * @return Java {@code short} value this node represents, as {@code Optional<Short>},
763
763
* if possible to accurately represent; {@code Optional.empty()} otherwise
764
764
*/
765
765
public abstract Optional <Short > shortValueOpt ();
@@ -803,7 +803,7 @@ public String asText(String defaultValue) {
803
803
* ({@code Optional.empty()}) if this node cannot
804
804
* be coerced to {@code short}.
805
805
*
806
- * @return {@link Optional<Short>} value this node represents,
806
+ * @return {@code Optional<Short>} value this node represents,
807
807
* if possible to accurately represent; {@code Optional.empty()} otherwise
808
808
*/
809
809
public abstract Optional <Short > asShortOpt ();
@@ -1104,10 +1104,10 @@ public String asText(String defaultValue) {
1104
1104
1105
1105
/**
1106
1106
* Method similar to {@link #floatValue()}, but that will return empty
1107
- * {@link Optional<Float>} ({@code Optional.empty()}) if this node cannot
1107
+ * {@code Optional<Float>} ({@code Optional.empty()}) if this node cannot
1108
1108
* be converted to Java {@code float}.
1109
1109
*
1110
- * @return Java {@code float} value this node represents, as {@link Optional<Float>},
1110
+ * @return Java {@code float} value this node represents, as {@code Optional<Float>},
1111
1111
* if possible to accurately represent; {@code Optional.empty()} otherwise
1112
1112
*/
1113
1113
public abstract Optional <Float > floatValueOpt ();
@@ -1145,7 +1145,7 @@ public String asText(String defaultValue) {
1145
1145
* ({@code Optional.empty()}) if this node cannot
1146
1146
* be coerced to {@code float}.
1147
1147
*
1148
- * @return {@link Optional<Float>} value this node represents,
1148
+ * @return {@code Optional<Float>} value this node represents,
1149
1149
* if possible to accurately represent; {@code Optional.empty()} otherwise
1150
1150
*/
1151
1151
public abstract Optional <Float > asFloatOpt ();
0 commit comments