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

graphql.scalars.numeric.PositiveFloatScalar Maven / Gradle / Ivy

There is a newer version: 2023-01-24T02-11-56-babda5f
Show newest version
package graphql.scalars.numeric;

import graphql.Internal;
import graphql.schema.GraphQLScalarType;

import java.util.function.Function;

/**
 * Access this via {@link graphql.scalars.ExtendedScalars#PositiveFloat}
 */
@Internal
public final class PositiveFloatScalar {

    private PositiveFloatScalar() {}

    public static final GraphQLScalarType INSTANCE = GraphQLScalarType.newScalar()
            .name("PositiveFloat")
            .description("An Float scalar that must be a positive value")
            .coercing(new FloatCoercing() {
                @Override
                protected Double check(Double d, Function exceptionMaker) {
                    if (d <= 0) {
                        throw exceptionMaker.apply("The value must be a positive value");
                    }
                    return d;
                }
            })
            .build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy