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

graphql.language.ScalarTypeExtensionDefinition Maven / Gradle / Ivy

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

import java.util.List;

public class ScalarTypeExtensionDefinition extends ScalarTypeDefinition {

    public ScalarTypeExtensionDefinition(String name) {
        super(name);
    }

    public ScalarTypeExtensionDefinition(String name, List directives) {
        super(name, directives);
    }

    @Override
    public ScalarTypeExtensionDefinition deepCopy() {
        return new ScalarTypeExtensionDefinition(getName(), deepCopy(getDirectives()));
    }

    @Override
    public String toString() {
        return "ScalarTypeExtensionDefinition{" +
                "name='" + getName() + '\'' +
                ", directives=" + getDirectives() +
                '}';

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy