1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

Adds more javadoc.

This commit is contained in:
John J. Aylward 2016-09-22 14:40:39 -04:00
parent 34652a8706
commit 68f92eb395

View file

@ -64,7 +64,11 @@ public class XML {
/**
* Creates an iterator for navigating Code Points in a string instead of
* characters.
* characters. Once Java7 support is dropped, this can be replaced with
* <code>
* string.codePoints()
* </code>
* which is available in Java8 and above.
*
* @see <a href=
* "http://stackoverflow.com/a/21791059/6030888">http://stackoverflow.com/a/21791059/6030888</a>