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

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

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

/**
 * Created by nlabrot on 13/04/16.
 */
public class PathObjectNode extends PathNode {
    private String name;
    public PathObjectNode(String name , PathNode child) {
        super(child);
        this.name = name;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy