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

io.smallrye.graphql.client.core.Enum Maven / Gradle / Ivy

Go to download

SmallRye specific Client API, extending the MicroProfile client api, allowing us to play with the api first before we move it to the spec

There is a newer version: 2.11.0
Show newest version
package io.smallrye.graphql.client.core;

import static io.smallrye.graphql.client.core.utils.ServiceUtils.getNewInstanceOf;

public interface Enum extends Buildable {
    /*
     * Static factory methods
     */
    static Enum gqlEnum(String value) {
        Enum gqlEnum = getNewInstanceOf(Enum.class);

        gqlEnum.setValue(value);

        return gqlEnum;
    }

    /*
     * Getter/Setter
     */
    String getValue();

    void setValue(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy