Home | History | Annotate | Download | only in util

Lines Matching refs:NUMBER

163  * <h3>Number Handling</h3>
193 * long as the longest token that can be reported as a number.
399 * consuming it. If the next token is a number, this method will return its
407 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
451 * Returns the {@link JsonToken#NUMBER double} value of the next token,
459 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
469 * Returns the {@link JsonToken#NUMBER long} value of the next token,
476 * as a number, or exactly represented as a long.
480 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
500 * Returns the {@link JsonToken#NUMBER int} value of the next token,
507 * as a number, or exactly represented as an int.
511 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
1101 * Determine whether the characters is a JSON number. Numbers are of the
1148 return JsonToken.NUMBER;