List of usage examples for javax.json JsonValue NULL
JsonValue NULL
To view the source code for javax.json JsonValue NULL.
Click Source Link
From source file:nl.nn.adapterframework.align.Json2Xml.java
@Override public boolean isNil(XSElementDeclaration elementDeclaration, JsonValue node) { boolean result = node == JsonValue.NULL; if (DEBUG)//from ww w . j a v a2 s. c o m log.debug("isNil() node [" + node + "] = [" + result + "]"); return result; }