@@ -116,7 +116,7 @@ public Long parseLiteral(Object input) {
116
116
/**
117
117
* This represents the "Short" type which is a representation of java.lang.Short
118
118
*/
119
- public static final GraphQLScalarType GraphQLShort = new GraphQLScalarType ("Short" , "Built-in Short as Int" , new Coercing <Short , Short >() {
119
+ public static final GraphQLScalarType GraphQLShort = new GraphQLScalarType ("Short" , "Short as Int" , new Coercing <Short , Short >() {
120
120
121
121
private Short convertImpl (Object input ) {
122
122
if (input instanceof Short ) {
@@ -181,7 +181,7 @@ public Short parseLiteral(Object input) {
181
181
/**
182
182
* This represents the "Byte" type which is a representation of java.lang.Byte
183
183
*/
184
- public static final GraphQLScalarType GraphQLByte = new GraphQLScalarType ("Byte" , "Built-in Byte as Int" , new Coercing <Byte , Byte >() {
184
+ public static final GraphQLScalarType GraphQLByte = new GraphQLScalarType ("Byte" , "Byte as Int" , new Coercing <Byte , Byte >() {
185
185
186
186
private Byte convertImpl (Object input ) {
187
187
if (input instanceof Byte ) {
@@ -247,7 +247,7 @@ public Byte parseLiteral(Object input) {
247
247
/**
248
248
* This represents the "BigInteger" type which is a representation of java.math.BigInteger
249
249
*/
250
- public static final GraphQLScalarType GraphQLBigInteger = new GraphQLScalarType ("BigInteger" , "Built-in java.math.BigInteger" , new Coercing <BigInteger , BigInteger >() {
250
+ public static final GraphQLScalarType GraphQLBigInteger = new GraphQLScalarType ("BigInteger" , "java.math.BigInteger" , new Coercing <BigInteger , BigInteger >() {
251
251
252
252
private BigInteger convertImpl (Object input ) {
253
253
if (isNumberIsh (input )) {
@@ -319,7 +319,7 @@ public BigInteger parseLiteral(Object input) {
319
319
/**
320
320
* This represents the "BigDecimal" type which is a representation of java.math.BigDecimal
321
321
*/
322
- public static final GraphQLScalarType GraphQLBigDecimal = new GraphQLScalarType ("BigDecimal" , "Built-in java.math.BigDecimal" , new Coercing <BigDecimal , BigDecimal >() {
322
+ public static final GraphQLScalarType GraphQLBigDecimal = new GraphQLScalarType ("BigDecimal" , "java.math.BigDecimal" , new Coercing <BigDecimal , BigDecimal >() {
323
323
324
324
private BigDecimal convertImpl (Object input ) {
325
325
if (isNumberIsh (input )) {
@@ -380,7 +380,7 @@ public BigDecimal parseLiteral(Object input) {
380
380
/**
381
381
* This represents the "Char" type which is a representation of java.lang.Character
382
382
*/
383
- public static final GraphQLScalarType GraphQLChar = new GraphQLScalarType ("Char" , "Built-in Char as Character" , new Coercing <Character , Character >() {
383
+ public static final GraphQLScalarType GraphQLChar = new GraphQLScalarType ("Char" , "Char as Character" , new Coercing <Character , Character >() {
384
384
385
385
private Character convertImpl (Object input ) {
386
386
if (input instanceof String && ((String ) input ).length () == 1 ) {
0 commit comments