Uses of Class
graphql.language.TypeName
-
Packages that use TypeName Package Description graphql.language graphql.parser graphql.schema.idl graphql.schema.idl.errors graphql.validation graphql.validation.rules -
-
Uses of TypeName in graphql.language
Fields in graphql.language declared as TypeName Modifier and Type Field Description private TypeName
FragmentDefinition.Builder. typeCondition
private TypeName
FragmentDefinition. typeCondition
private TypeName
InlineFragment.Builder. typeCondition
private TypeName
InlineFragment. typeCondition
private TypeName
OperationTypeDefinition.Builder. typeName
private TypeName
OperationTypeDefinition. typeName
Methods in graphql.language that return TypeName Modifier and Type Method Description TypeName
TypeName.Builder. build()
TypeName
TypeName. deepCopy()
TypeName
FragmentDefinition. getTypeCondition()
TypeName
InlineFragment. getTypeCondition()
TypeName
OperationTypeDefinition. getTypeName()
TypeName
TypeName. transform(java.util.function.Consumer<TypeName.Builder> builderConsumer)
TypeName
TypeName. withNewChildren(NodeChildrenContainer newChildren)
Methods in graphql.language with parameters of type TypeName Modifier and Type Method Description NonNullType.Builder
NonNullType.Builder. type(TypeName type)
FragmentDefinition.Builder
FragmentDefinition.Builder. typeCondition(TypeName typeCondition)
InlineFragment.Builder
InlineFragment.Builder. typeCondition(TypeName typeCondition)
OperationTypeDefinition.Builder
OperationTypeDefinition.Builder. typeName(TypeName type)
TraversalControl
NodeVisitor. visitTypeName(TypeName node, TraverserContext<Node> data)
TraversalControl
NodeVisitorStub. visitTypeName(TypeName node, TraverserContext<Node> context)
Constructors in graphql.language with parameters of type TypeName Constructor Description Builder(TypeName existing)
FragmentDefinition(java.lang.String name, TypeName typeCondition, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
InlineFragment(TypeName typeCondition)
alternative to using a Builder for convenienceInlineFragment(TypeName typeCondition, SelectionSet selectionSet)
alternative to using a Builder for convenienceInlineFragment(TypeName typeCondition, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
OperationTypeDefinition(java.lang.String name, TypeName typeName)
alternative to using a Builder for convenienceOperationTypeDefinition(java.lang.String name, TypeName typeName, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
-
Uses of TypeName in graphql.parser
Methods in graphql.parser that return TypeName Modifier and Type Method Description protected TypeName
GraphqlAntlrToLanguage. createTypeName(GraphqlParser.TypeNameContext ctx)
-
Uses of TypeName in graphql.schema.idl
Fields in graphql.schema.idl declared as TypeName Modifier and Type Field Description private TypeName
TypeInfo. typeName
Methods in graphql.schema.idl that return TypeName Modifier and Type Method Description TypeName
TypeInfo. getTypeName()
static TypeName
TypeUtil. unwrapAll(Type type)
Unwraps all layers of the type or just returns the type again if it's not a wrapped typeMethods in graphql.schema.idl with parameters of type TypeName Modifier and Type Method Description boolean
TypeDefinitionRegistry. hasType(TypeName typeName)
-
Uses of TypeName in graphql.schema.idl.errors
Constructors in graphql.schema.idl.errors with parameters of type TypeName Constructor Description MissingInterfaceTypeError(java.lang.String typeOfType, TypeDefinition typeDefinition, TypeName typeName)
MissingTypeError(java.lang.String typeOfType, Node node, java.lang.String name, TypeName typeName)
MissingTypeError(java.lang.String typeOfType, TypeDefinition typeDefinition, TypeName typeName)
-
Uses of TypeName in graphql.validation
Methods in graphql.validation that return TypeName Modifier and Type Method Description TypeName
ValidationUtil. getUnmodifiedType(Type<?> type)
Methods in graphql.validation with parameters of type TypeName Modifier and Type Method Description void
AbstractRule. checkTypeName(TypeName typeName)
private void
RulesVisitor. checkTypeName(TypeName node)
-
Uses of TypeName in graphql.validation.rules
Methods in graphql.validation.rules with parameters of type TypeName Modifier and Type Method Description void
KnownTypeNames. checkTypeName(TypeName typeName)
-