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

org.nlab.json.stream.jsonpath.path.PathNode Maven / Gradle / Ivy

package org.nlab.json.stream.jsonpath.path;

/**
 * Created by nlabrot on 13/04/16.
 */
public class PathNode {

    private PathNode child;

    public PathNode(PathNode child) {
        this.child = child;
    }

    public PathNode getChild() {
        return child;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy