Package graphql.execution
Class ValuesResolverLegacy
- java.lang.Object
-
- graphql.execution.ValuesResolverLegacy
-
class ValuesResolverLegacy extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ValuesResolverLegacy()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description private static Value<?>
handleInputObjectLegacy(java.lang.Object javaValue, GraphQLInputObjectType type, GraphQLContext graphqlContext, java.util.Locale locale)
private static Value<?>
handleListLegacy(java.lang.Object value, GraphQLList type, GraphQLContext graphqlContext, java.util.Locale locale)
private static Value<?>
handleNonNullLegacy(java.lang.Object _value, GraphQLNonNull type, GraphQLContext graphqlContext, java.util.Locale locale)
private static Value<?>
handleNumberLegacy(java.lang.String stringValue)
private static java.lang.Object
serializeLegacy(GraphQLType type, java.lang.Object value, GraphQLContext graphqlContext, java.util.Locale locale)
(package private) static Value<?>
valueToLiteralLegacy(java.lang.Object value, GraphQLType type, GraphQLContext graphqlContext, java.util.Locale locale)
Legacy logic to convert an arbitrary java object to an Ast Literal.
-
-
-
Method Detail
-
valueToLiteralLegacy
static Value<?> valueToLiteralLegacy(java.lang.Object value, GraphQLType type, GraphQLContext graphqlContext, java.util.Locale locale)
Legacy logic to convert an arbitrary java object to an Ast Literal. Only provided here to preserve backwards compatibility.
-
handleInputObjectLegacy
private static Value<?> handleInputObjectLegacy(java.lang.Object javaValue, GraphQLInputObjectType type, GraphQLContext graphqlContext, java.util.Locale locale)
-
handleNumberLegacy
private static Value<?> handleNumberLegacy(java.lang.String stringValue)
-
handleListLegacy
private static Value<?> handleListLegacy(java.lang.Object value, GraphQLList type, GraphQLContext graphqlContext, java.util.Locale locale)
-
handleNonNullLegacy
private static Value<?> handleNonNullLegacy(java.lang.Object _value, GraphQLNonNull type, GraphQLContext graphqlContext, java.util.Locale locale)
-
serializeLegacy
private static java.lang.Object serializeLegacy(GraphQLType type, java.lang.Object value, GraphQLContext graphqlContext, java.util.Locale locale)
-
-