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

graphql.language.Node Maven / Gradle / Ivy

package graphql.language;


import java.util.List;

public interface Node {

    List getChildren();

    SourceLocation getSourceLocation();

    /**
     * Compares just the content and not the children.
     *
     * @param node the other node to compare to
     * @return isEqualTo
     */
    boolean isEqualTo(Node node);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy