public class Scalars
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static GraphQLScalarType |
GraphQLBigDecimal
This represents the "BigDecimal" type which is a representation of java.math.BigDecimal
|
static GraphQLScalarType |
GraphQLBigInteger
This represents the "BigInteger" type which is a representation of java.math.BigInteger
|
static GraphQLScalarType |
GraphQLBoolean
This represents the "Boolean" type as defined in the graphql specification : http://facebook.github.io/graphql/#sec-Boolean
|
static GraphQLScalarType |
GraphQLByte
This represents the "Byte" type which is a representation of java.lang.Byte
|
static GraphQLScalarType |
GraphQLChar
This represents the "Char" type which is a representation of java.lang.Character
|
static GraphQLScalarType |
GraphQLFloat
This represents the "Float" type as defined in the graphql specification : http://facebook.github.io/graphql/#sec-Float
Note: The Float type in GraphQL is equivalent to Double in Java.
|
static GraphQLScalarType |
GraphQLID
This represents the "ID" type as defined in the graphql specification : http://facebook.github.io/graphql/#sec-ID
The ID scalar type represents a unique identifier, often used to re-fetch an object or as the key for a cache.
|
static GraphQLScalarType |
GraphQLInt
This represents the "Int" type as defined in the graphql specification : http://facebook.github.io/graphql/#sec-Int
The Int scalar type represents a signed 32‐bit numeric non‐fractional value.
|
static GraphQLScalarType |
GraphQLLong
This represents the "Long" type which is a representation of java.lang.Long
|
static GraphQLScalarType |
GraphQLShort
This represents the "Short" type which is a representation of java.lang.Short
|
static GraphQLScalarType |
GraphQLString
This represents the "String" type as defined in the graphql specification : http://facebook.github.io/graphql/#sec-String
|
Constructor and Description |
---|
Scalars() |
public static final GraphQLScalarType GraphQLInt
public static final GraphQLScalarType GraphQLFloat
public static final GraphQLScalarType GraphQLString
public static final GraphQLScalarType GraphQLBoolean
public static final GraphQLScalarType GraphQLID
public static final GraphQLScalarType GraphQLLong
public static final GraphQLScalarType GraphQLShort
public static final GraphQLScalarType GraphQLByte
public static final GraphQLScalarType GraphQLBigInteger
public static final GraphQLScalarType GraphQLBigDecimal
public static final GraphQLScalarType GraphQLChar