Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/com/fasterxml/jackson/databind/JsonNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,9 @@ public boolean canConvertToExactIntegral() {
* Does <b>NOT</b> do any conversions for non-String value nodes;
* for non-String values (ones for which {@link #isTextual} returns
* false) null will be returned.
* For String values, null is never returned (but empty Strings may be)
* For String values, null is never returned (but empty Strings may be).
*
* IMPORTANT : Starting Jackson 3.0, this method will be named as {@code stringValue()}.
*
* @return Textual value this node contains, iff it is a textual
* JSON node (comes from JSON String value entry)
Expand Down
Loading