Example usage for javax.json JsonValue NULL

List of usage examples for javax.json JsonValue NULL

Introduction

In this page you can find the example usage for javax.json JsonValue NULL.

Prototype

JsonValue NULL

To view the source code for javax.json JsonValue NULL.

Click Source Link

Document

JSON null value.

Usage

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;
}