Package net.sf.saxon.ma.json
Class JsonHandlerMap
- java.lang.Object
-
- net.sf.saxon.ma.json.JsonHandler
-
- net.sf.saxon.ma.json.JsonHandlerMap
-
public class JsonHandlerMap extends JsonHandler
Event handler for the JSON parser which constructs a structure of maps and arrays representing the content of the JSON text.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Stack<java.lang.String>
keys
-
Fields inherited from class net.sf.saxon.ma.json.JsonHandler
charChecker, escape
-
-
Constructor Summary
Constructors Constructor Description JsonHandlerMap(XPathContext context, int flags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
endArray()
Close the current arrayvoid
endMap()
Close the current object/mapSequence
getResult()
boolean
setKey(java.lang.String unEscaped, java.lang.String reEscaped)
Set the key to be written for the next entry in an object/mapvoid
startArray()
Open a new arrayvoid
startMap()
Start a new object/mapvoid
writeBoolean(boolean value)
Write a boolean valuevoid
writeNull()
Write a null valuevoid
writeNumeric(java.lang.String asString, AtomicValue parsedValue)
Write a numeric valuevoid
writeString(java.lang.String val)
Write a string value-
Methods inherited from class net.sf.saxon.ma.json.JsonHandler
getContext, handleInvalidCharacters, markAsEscaped, reEscape, setContext, setFallbackFunction
-
-
-
-
Constructor Detail
-
JsonHandlerMap
public JsonHandlerMap(XPathContext context, int flags)
-
-
Method Detail
-
getResult
public Sequence getResult()
- Overrides:
getResult
in classJsonHandler
-
setKey
public boolean setKey(java.lang.String unEscaped, java.lang.String reEscaped)
Set the key to be written for the next entry in an object/map- Overrides:
setKey
in classJsonHandler
- Parameters:
unEscaped
- the key for the entry (null implies no key) in unescaped form (backslashes, if present, do not signal an escape sequence)reEscaped
- the key for the entry (null implies no key) in reescaped form. In this form special characters are represented as backslash-escaped sequences if the escape option is yes; if escape=no, the reEscaped form is the same as the unEscaped form.- Returns:
- true if the key is already present in the map, false if it is not
-
startArray
public void startArray()
Open a new array- Overrides:
startArray
in classJsonHandler
-
endArray
public void endArray()
Close the current array- Overrides:
endArray
in classJsonHandler
-
startMap
public void startMap()
Start a new object/map- Overrides:
startMap
in classJsonHandler
-
endMap
public void endMap()
Close the current object/map- Overrides:
endMap
in classJsonHandler
-
writeNumeric
public void writeNumeric(java.lang.String asString, AtomicValue parsedValue)
Write a numeric value- Overrides:
writeNumeric
in classJsonHandler
- Parameters:
asString
- the string representation of the valueparsedValue
- the double representation of the value
-
writeString
public void writeString(java.lang.String val) throws XPathException
Write a string value- Overrides:
writeString
in classJsonHandler
- Parameters:
val
- The string to be written (which may or may not contain JSON escape sequences, according to the options that were set)- Throws:
XPathException
- if a dynamic error occurs
-
writeBoolean
public void writeBoolean(boolean value)
Write a boolean value- Overrides:
writeBoolean
in classJsonHandler
- Parameters:
value
- the boolean value to be written
-
writeNull
public void writeNull()
Write a null value- Overrides:
writeNull
in classJsonHandler
-
-