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

graphql.language.DirectivesContainer Maven / Gradle / Ivy

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


import graphql.PublicApi;

import java.util.List;
import java.util.Map;

import static graphql.language.NodeUtil.directivesByName;

/**
 * Represents a language node that can contain Directives.
 */
@PublicApi
public interface DirectivesContainer extends NamedNode {

    /**
     * @return a list of directives associated with this Node
     */
    List getDirectives();

    /**
     * @return a a map of directives by directive name
     */
    default Map getDirectivesByName() {
        return directivesByName(getDirectives());
    }

    /**
     * Returns a directive with the provided name
     *
     * @param directiveName the name of the directive to retrieve
     *
     * @return the directive or null if there is one one with that name
     */
    default Directive getDirective(String directiveName) {
        return getDirectivesByName().get(directiveName);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy