io.smallrye.graphql.api.CustomFloatScalar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-graphql-api Show documentation
Show all versions of smallrye-graphql-api Show documentation
SmallRye specific API, extending the MicroProfile api, allowing us to play with the api first before we move it to the spec
The newest version!
package io.smallrye.graphql.api;
import java.math.BigDecimal;
/**
* A base class for all CustomScalars that are based on GraphQL's Float.
*/
public interface CustomFloatScalar {
BigDecimal floatValueForSerialization();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy