You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per JSTEP-6, we will rename references of "Text" in accessors for (JSON) String values to use "String" instead.
In some cases old method will be left deprecated but available (getText() f.ex), whereas in others method is just renamed (new one added, old removed).
Specifically:
getText(): deprecate, add getString() as replacement
getText(Writer): rename as getString(Writer) (no deprecated method left)
getTextCharacters(), getTextLength(), getTextOffset(): deprecated, add new variants with name getStringXxx()
hasTextCharacters(): rename as hasStringCharacters() (no deprecated method left)
nextTextValue(): rename as nextStringValue() (no deprecated method left)
The text was updated successfully, but these errors were encountered:
As per JSTEP-6, we will rename references of "Text" in accessors for (JSON) String values to use "String" instead.
In some cases old method will be left deprecated but available (
getText()
f.ex), whereas in others method is just renamed (new one added, old removed).Specifically:
getText()
: deprecate, addgetString()
as replacementgetText(Writer)
: rename asgetString(Writer)
(no deprecated method left)getTextCharacters()
,getTextLength()
,getTextOffset()
: deprecated, add new variants with namegetStringXxx()
hasTextCharacters()
: rename ashasStringCharacters()
(no deprecated method left)nextTextValue()
: rename asnextStringValue()
(no deprecated method left)The text was updated successfully, but these errors were encountered: