All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mycomm.itool.json.JsonNull Maven / Gradle / Ivy

package com.mycomm.itool.json;

/**
 * Created by jw362j on 7/30/2014.
 */
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

public class JsonNull extends JsonValue {

    @Override
    public String toJsonString() {
        return "null";
    }

    @Override
    protected void read(DataInputStream dis) throws IOException {

    }

    @Override
    protected void write(DataOutputStream dos) throws IOException {
        dos.writeByte(TYPE_NULL);
    }

    @Override
    public String toString() {
        return String.valueOf("null");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy