Uses of Class
fmpp.models.JSONNode
-
Packages that use JSONNode Package Description fmpp.models freemarker.template.TemplateModelimplementations. -
-
Uses of JSONNode in fmpp.models
Subclasses of JSONNode in fmpp.models Modifier and Type Class Description classJSONArrayNodeJSON "array" value; see http://www.json.org/.classJSONBooleanNodeJSON "true" and "false" value; see http://www.json.org/.classJSONNullNodeJSON "null" value; see http://www.json.org/.classJSONNumberNodeJSON "number" value; see http://www.json.org/.classJSONObjectNodeJSON "object" value; see http://www.json.org/.classJSONStringNodeJSON "string" value; see http://www.json.org/.Methods in fmpp.models that return JSONNode Modifier and Type Method Description static JSONNodeJSONNode. wrap(java.lang.Object jsonPOJO)protected static JSONNodeJSONNode. wrap(java.lang.Object obj, JSONNode parentNode, java.lang.String nodeName, boolean wrapNullAsJSONNullNode)Methods in fmpp.models with parameters of type JSONNode Modifier and Type Method Description protected static JSONNodeJSONNode. wrap(java.lang.Object obj, JSONNode parentNode, java.lang.String nodeName, boolean wrapNullAsJSONNullNode)Constructors in fmpp.models with parameters of type JSONNode Constructor Description JSONArrayNode(JSONNode parentNode, java.lang.String nodeName, java.util.List elements)JSONBooleanNode(JSONNode parentNode, java.lang.String nodeName, boolean value)JSONNode(JSONNode parentNode, java.lang.String nodeName)JSONNullNode(JSONNode parentNode, java.lang.String nodeName)JSONNumberNode(JSONNode parentNode, java.lang.String nodeName, java.lang.Number value)JSONObjectNode(JSONNode parentNode, java.lang.String nodeName, java.util.Map map)JSONStringNode(JSONNode parentNode, java.lang.String nodeName, java.lang.String value)
-