Parse the specified character sequence into a Java object. @param input the character sequence to parse into a Java object. @return the Java object represented by the specified input stream.
(CharSequence input)
| 33 | * @return the Java object represented by the specified {@code input} stream. |
| 34 | */ |
| 35 | T parse(CharSequence input); |
| 36 | |
| 37 | /** |
| 38 | * Parse the specified character sequence with the specified bounds into a Java object. |
no outgoing calls