graphql.scalars.numeric.NegativeIntScalar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-extended-scalars Show documentation
Show all versions of graphql-java-extended-scalars Show documentation
A library fo extended scalars for graphql-java
package graphql.scalars.numeric;
import graphql.Internal;
import graphql.schema.GraphQLScalarType;
import java.util.function.Function;
/**
* Access this via {@link graphql.scalars.ExtendedScalars#NegativeInt}
*/
@Internal
public final class NegativeIntScalar {
private NegativeIntScalar() {}
public static final GraphQLScalarType INSTANCE = GraphQLScalarType.newScalar()
.name("NegativeInt")
.description("An Int scalar that must be a negative value")
.coercing(new IntCoercing() {
@Override
protected Integer check(Integer i, Function exceptionMaker) {
if (i >= 0) {
throw exceptionMaker.apply("The value must be a negative integer");
}
return i;
}
})
.build();
}