Uses of Class
io.smallrye.graphql.schema.helper.Direction
-
Packages that use Direction Package Description io.smallrye.graphql.schema io.smallrye.graphql.schema.creator io.smallrye.graphql.schema.helper -
-
Uses of Direction in io.smallrye.graphql.schema
Methods in io.smallrye.graphql.schema with parameters of type Direction Modifier and Type Method Description static AnnotationsAnnotations. getAnnotationsForPojo(Direction direction, org.jboss.jandex.FieldInfo fieldInfo)Get used when creating fields on inputs and types.static AnnotationsAnnotations. getAnnotationsForPojo(Direction direction, org.jboss.jandex.FieldInfo fieldInfo, org.jboss.jandex.MethodInfo methodInfo)Get used when creating fields on inputs and types. -
Uses of Direction in io.smallrye.graphql.schema.creator
Methods in io.smallrye.graphql.schema.creator with parameters of type Direction Modifier and Type Method Description Optional<Field>FieldCreator. createFieldForPojo(Direction direction, org.jboss.jandex.FieldInfo fieldInfo, Reference parentObjectReference)Creates a field from a public field.Optional<Field>FieldCreator. createFieldForPojo(Direction direction, org.jboss.jandex.FieldInfo fieldInfo, org.jboss.jandex.MethodInfo methodInfo, Reference parentObjectReference)Creates a field from a field and method.ReferenceReferenceCreator. createReferenceForAdapter(org.jboss.jandex.Type fieldType, Annotations annotations, Direction direction)Get a reference to a field type for an adapter on a fieldReferenceReferenceCreator. createReferenceForPojoField(org.jboss.jandex.Type fieldType, org.jboss.jandex.Type methodType, Annotations annotations, Direction direction, Reference parentObjectReference)Get a reference to a Field Type for a InputType or Type.protected static booleanFieldCreator. isGraphQlField(Direction direction, org.jboss.jandex.FieldInfo fieldInfo, org.jboss.jandex.MethodInfo methodInfo)Checks if method and/or field are use-able as a GraphQL-Field.protected voidModelCreator. populateField(Direction direction, Field field, org.jboss.jandex.Type type, Annotations annotations)protected voidModelCreator. populateField(Direction direction, Field field, org.jboss.jandex.Type fieldType, org.jboss.jandex.Type methodType, Annotations annotations) -
Uses of Direction in io.smallrye.graphql.schema.helper
Methods in io.smallrye.graphql.schema.helper that return Direction Modifier and Type Method Description static DirectionDirection. valueOf(String name)Returns the enum constant of this type with the specified name.static Direction[]Direction. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.smallrye.graphql.schema.helper with parameters of type Direction Modifier and Type Method Description static Optional<AdaptWith>AdaptWithHelper. getAdaptWith(Direction direction, ReferenceCreator referenceCreator, Field field, Annotations annotations)Get the adaptWith for a certain field (if any)static Optional<AdaptWith>AdaptWithHelper. getAdaptWith(Direction direction, ReferenceCreator referenceCreator, Reference r, Annotations annotations)Get the adapt with for a certain reference.static Optional<AdaptWith>AdaptWithHelper. getAdaptWith(Direction direction, ReferenceCreator referenceCreator, Reference r, Annotations annotations, io.smallrye.graphql.schema.helper.AdaptWithHelper.AdapterType adapterType)Get the adapt with for a certain reference.static StringMethodHelper. getPropertyName(Direction direction, String methodName)Get the correct field name from a methodstatic booleanMethodHelper. isPropertyMethod(Direction direction, String methodName)Deprecated.static booleanMethodHelper. isPropertyMethod(Direction direction, org.jboss.jandex.MethodInfo method)See if this is a getter or setter for a field property (depending on the direction)
-