Package groovy.json
Class JsonToken
java.lang.Object
groovy.json.JsonToken
A JSON token, with a type, line / column information, and the text of that token.
- Since:
- 1.8.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlong
long
long
long
getText()
getType()
getValue()
Return the value represented by this token (i.e.void
setEndColumn
(long endColumn) void
setEndLine
(long endLine) void
setStartColumn
(long startColumn) void
setStartLine
(long startLine) void
void
setType
(JsonTokenType type) toString()
-
Constructor Details
-
JsonToken
public JsonToken()
-
-
Method Details
-
getValue
Return the value represented by this token (i.e. a number, a string, a boolean or null). For numbers, BigDecimal is returned for decimals and Integer, Long or BigInteger for integral numbers.- Returns:
- the represented value
-
toString
-
getStartLine
public long getStartLine() -
setStartLine
public void setStartLine(long startLine) -
getEndLine
public long getEndLine() -
setEndLine
public void setEndLine(long endLine) -
getStartColumn
public long getStartColumn() -
setStartColumn
public void setStartColumn(long startColumn) -
getEndColumn
public long getEndColumn() -
setEndColumn
public void setEndColumn(long endColumn) -
getType
-
setType
-
setText
-
getText
-