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

graphql.language.InterfaceTypeExtensionDefinition Maven / Gradle / Ivy

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

import java.util.List;

public class InterfaceTypeExtensionDefinition extends InterfaceTypeDefinition {

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

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy