All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.com.graphql_java_generator.GraphQLField Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
package com.graphql_java_generator;

/**
 * Common interface implemented by all GraphQL POJO field name enumerations.
 */
public interface GraphQLField {

    /**
     * Returns the field name of the field
     * @return
     */
    String getFieldName();

    /**
     * Returns the GraphQL class which declares the field
     * @return
     */
    Class getGraphQLType();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy