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

graphql.language.NullValue Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.language;


import java.util.Collections;
import java.util.List;

public class NullValue extends AbstractNode implements Value {

    public static NullValue Null = new NullValue();

    private NullValue() {
    }

    @Override
    public List getChildren() {
        return Collections.emptyList();
    }

    @Override
    public boolean isEqualTo(Node o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        return true;

    }

    @Override
    public String toString() {
        return "NullValue{" +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy