|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object groovy.json.JsonTokenType
public enum JsonTokenType
Enum listing all the possible JSON tokens that should be recognized by the lexer.
Enum Constant Summary | |
---|---|
CLOSE_BRACKET
|
|
CLOSE_CURLY
|
|
COLON
|
|
COMMA
|
|
FALSE
|
|
NULL
|
|
NUMBER
|
|
OPEN_BRACKET
|
|
OPEN_CURLY
|
|
STRING
|
|
TRUE
|
Method Summary | |
---|---|
String
|
getLabel()
|
Object
|
getValidator()
|
boolean
|
matching(String input)
Tells if an input string matches a token. |
static JsonTokenType
|
startingWith(char c)
Find which JSON value might be starting with a given character |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Enum Constant Detail |
---|
JsonTokenType CLOSE_BRACKET
JsonTokenType CLOSE_CURLY
JsonTokenType COLON
JsonTokenType COMMA
JsonTokenType FALSE
JsonTokenType NULL
JsonTokenType NUMBER
JsonTokenType OPEN_BRACKET
JsonTokenType OPEN_CURLY
JsonTokenType STRING
JsonTokenType TRUE
Method Detail |
---|
public String getLabel()
public Object getValidator()
public boolean matching(String input)
input
- the input string to matchMatching
enum value:
YES
if this is an exact match,
POSSIBLE
if more characters could turn the input string into a valid token,
or NO
if the string cannot possibly match the pattern even with more characters to read.
public static JsonTokenType startingWith(char c)
c
- the character
Copyright © 2003-2013 The Codehaus. All rights reserved.