Package graphql.analysis
Class QueryVisitorFieldArgumentInputValueImpl
- java.lang.Object
-
- graphql.analysis.QueryVisitorFieldArgumentInputValueImpl
-
- All Implemented Interfaces:
QueryVisitorFieldArgumentInputValue
public class QueryVisitorFieldArgumentInputValueImpl extends java.lang.Object implements QueryVisitorFieldArgumentInputValue
-
-
Field Summary
Fields Modifier and Type Field Description private GraphQLInputValueDefinition
inputValueDefinition
private QueryVisitorFieldArgumentInputValue
parent
private Value
value
-
Constructor Summary
Constructors Modifier Constructor Description private
QueryVisitorFieldArgumentInputValueImpl(QueryVisitorFieldArgumentInputValue parent, GraphQLInputValueDefinition inputValueDefinition, Value value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) QueryVisitorFieldArgumentInputValueImpl
completeArgumentInputValue(Value<?> value)
GraphQLInputType
getInputType()
GraphQLInputValueDefinition
getInputValueDefinition()
java.lang.String
getName()
QueryVisitorFieldArgumentInputValue
getParent()
Value
getValue()
(package private) static QueryVisitorFieldArgumentInputValue
incompleteArgumentInputValue(GraphQLArgument graphQLArgument)
(package private) QueryVisitorFieldArgumentInputValueImpl
incompleteNewChild(GraphQLInputObjectField inputObjectField)
java.lang.String
toString()
-
-
-
Field Detail
-
inputValueDefinition
private final GraphQLInputValueDefinition inputValueDefinition
-
value
private final Value value
-
parent
private final QueryVisitorFieldArgumentInputValue parent
-
-
Constructor Detail
-
QueryVisitorFieldArgumentInputValueImpl
private QueryVisitorFieldArgumentInputValueImpl(QueryVisitorFieldArgumentInputValue parent, GraphQLInputValueDefinition inputValueDefinition, Value value)
-
-
Method Detail
-
incompleteArgumentInputValue
static QueryVisitorFieldArgumentInputValue incompleteArgumentInputValue(GraphQLArgument graphQLArgument)
-
incompleteNewChild
QueryVisitorFieldArgumentInputValueImpl incompleteNewChild(GraphQLInputObjectField inputObjectField)
-
completeArgumentInputValue
QueryVisitorFieldArgumentInputValueImpl completeArgumentInputValue(Value<?> value)
-
getParent
public QueryVisitorFieldArgumentInputValue getParent()
- Specified by:
getParent
in interfaceQueryVisitorFieldArgumentInputValue
-
getInputValueDefinition
public GraphQLInputValueDefinition getInputValueDefinition()
- Specified by:
getInputValueDefinition
in interfaceQueryVisitorFieldArgumentInputValue
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceQueryVisitorFieldArgumentInputValue
-
getInputType
public GraphQLInputType getInputType()
- Specified by:
getInputType
in interfaceQueryVisitorFieldArgumentInputValue
-
getValue
public Value getValue()
- Specified by:
getValue
in interfaceQueryVisitorFieldArgumentInputValue
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-