Uses of Class
graphql.execution.directives.QueryAppliedDirectiveArgument
-
Packages that use QueryAppliedDirectiveArgument Package Description graphql.execution.directives -
-
Uses of QueryAppliedDirectiveArgument in graphql.execution.directives
Fields in graphql.execution.directives with type parameters of type QueryAppliedDirectiveArgument Modifier and Type Field Description private com.google.common.collect.ImmutableList<QueryAppliedDirectiveArgument>
QueryAppliedDirective. arguments
private java.util.Map<java.lang.String,QueryAppliedDirectiveArgument>
QueryAppliedDirective.Builder. arguments
Methods in graphql.execution.directives that return QueryAppliedDirectiveArgument Modifier and Type Method Description QueryAppliedDirectiveArgument
QueryAppliedDirectiveArgument.Builder. build()
@Nullable QueryAppliedDirectiveArgument
QueryAppliedDirective. getArgument(java.lang.String name)
private QueryAppliedDirectiveArgument
QueryDirectivesImpl. toAppliedArgument(GraphQLArgument argument)
QueryAppliedDirectiveArgument
QueryAppliedDirectiveArgument. transform(java.util.function.Consumer<QueryAppliedDirectiveArgument.Builder> builderConsumer)
This helps you transform the current GraphQLArgument into another one by starting a builder with all the current values and allows you to transform it how you want.Methods in graphql.execution.directives that return types with arguments of type QueryAppliedDirectiveArgument Modifier and Type Method Description java.util.List<QueryAppliedDirectiveArgument>
QueryAppliedDirective. getArguments()
Methods in graphql.execution.directives with parameters of type QueryAppliedDirectiveArgument Modifier and Type Method Description QueryAppliedDirective.Builder
QueryAppliedDirective.Builder. argument(QueryAppliedDirectiveArgument argument)
static QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument. newArgument(QueryAppliedDirectiveArgument existing)
Method parameters in graphql.execution.directives with type arguments of type QueryAppliedDirectiveArgument Modifier and Type Method Description QueryAppliedDirective.Builder
QueryAppliedDirective.Builder. replaceArguments(java.util.List<QueryAppliedDirectiveArgument> arguments)
Constructors in graphql.execution.directives with parameters of type QueryAppliedDirectiveArgument Constructor Description Builder(QueryAppliedDirectiveArgument existing)
Constructor parameters in graphql.execution.directives with type arguments of type QueryAppliedDirectiveArgument Constructor Description QueryAppliedDirective(java.lang.String name, Directive definition, java.util.Collection<QueryAppliedDirectiveArgument> arguments)
-