Uses of Class
graphql.introspection.Introspection.DirectiveLocation
-
Packages that use Introspection.DirectiveLocation Package Description graphql.introspection graphql.schema graphql.schema.idl -
-
Uses of Introspection.DirectiveLocation in graphql.introspection
Methods in graphql.introspection that return Introspection.DirectiveLocation Modifier and Type Method Description static Introspection.DirectiveLocation
Introspection.DirectiveLocation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Introspection.DirectiveLocation[]
Introspection.DirectiveLocation. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Introspection.DirectiveLocation in graphql.schema
Fields in graphql.schema with type parameters of type Introspection.DirectiveLocation Modifier and Type Field Description private java.util.EnumSet<Introspection.DirectiveLocation>
GraphQLDirective.Builder. locations
private java.util.EnumSet<Introspection.DirectiveLocation>
GraphQLDirective. locations
Methods in graphql.schema that return types with arguments of type Introspection.DirectiveLocation Modifier and Type Method Description java.util.EnumSet<Introspection.DirectiveLocation>
GraphQLDirective. validLocations()
Methods in graphql.schema with parameters of type Introspection.DirectiveLocation Modifier and Type Method Description GraphQLDirective.Builder
GraphQLDirective.Builder. validLocation(Introspection.DirectiveLocation validLocation)
GraphQLDirective.Builder
GraphQLDirective.Builder. validLocations(Introspection.DirectiveLocation... validLocations)
Constructor parameters in graphql.schema with type arguments of type Introspection.DirectiveLocation Constructor Description GraphQLDirective(java.lang.String name, java.lang.String description, boolean repeatable, java.util.EnumSet<Introspection.DirectiveLocation> locations, java.util.List<GraphQLArgument> arguments, DirectiveDefinition definition)
-
Uses of Introspection.DirectiveLocation in graphql.schema.idl
Methods in graphql.schema.idl that return types with arguments of type Introspection.DirectiveLocation Modifier and Type Method Description private static java.util.List<Introspection.DirectiveLocation>
SchemaGeneratorAppliedDirectiveHelper. buildLocations(DirectiveDefinition directiveDefinition)
Methods in graphql.schema.idl with parameters of type Introspection.DirectiveLocation Modifier and Type Method Description private static Pair<GraphQLDirective,GraphQLAppliedDirective>
SchemaGeneratorAppliedDirectiveHelper. buildAppliedDirective(SchemaGeneratorHelper.BuildContext buildCtx, java.util.function.Function<Type<?>,GraphQLInputType> inputTypeFactory, Directive directive, java.util.Set<GraphQLDirective> directiveDefinitions, Introspection.DirectiveLocation directiveLocation, GraphqlTypeComparatorRegistry comparatorRegistry)
(package private) static Pair<java.util.List<GraphQLDirective>,java.util.List<GraphQLAppliedDirective>>
SchemaGeneratorAppliedDirectiveHelper. buildAppliedDirectives(SchemaGeneratorHelper.BuildContext buildCtx, java.util.function.Function<Type<?>,GraphQLInputType> inputTypeFactory, java.util.List<Directive> directives, java.util.List<Directive> extensionDirectives, Introspection.DirectiveLocation directiveLocation, java.util.Set<GraphQLDirective> runtimeDirectives, GraphqlTypeComparatorRegistry comparatorRegistry)
private void
SchemaTypeDirectivesChecker. checkDirectives(Introspection.DirectiveLocation expectedLocation, java.util.List<GraphQLError> errors, TypeDefinition<?> typeDef)
private void
SchemaTypeDirectivesChecker. checkDirectives(Introspection.DirectiveLocation expectedLocation, java.util.List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Node<?> element, java.lang.String elementName, java.util.List<Directive> directives)
private void
SchemaTypeChecker. checkInputValues(java.util.List<GraphQLError> errors, InputObjectTypeDefinition inputType, java.util.List<InputValueDefinition> inputValueDefinitions, Introspection.DirectiveLocation directiveLocation, java.util.Map<java.lang.String,DirectiveDefinition> directiveDefinitionMap)
private boolean
SchemaTypeDirectivesChecker. inRightLocation(Introspection.DirectiveLocation expectedLocation, DirectiveDefinition directiveDefinition)
-