enum

GraphQL::Language::Token::Kind

Inherits Enum < Comparable < Value < Object

Constants

BANG = 0
DOLLAR = 1
PAREN_L = 2
PAREN_R = 3
SPREAD = 4
COLON = 5
EQUALS = 6
AT = 7
BRACKET_L = 8
BRACKET_R = 9
BRACE_L = 10
PIPE = 11
BRACE_R = 12
NAME = 13
INT = 14
FLOAT = 15
STRING = 16
BLOCK_STRING = 17
COMMENT = 18
AMP = 19
EOF = 20

Instance methods

amp?

Returns true if this enum value equals AMP

Source
at?

Returns true if this enum value equals AT

Source
bang?

Returns true if this enum value equals BANG

Source
block_string?

Returns true if this enum value equals BLOCK_STRING

Source
brace_l?

Returns true if this enum value equals BRACE_L

Source
brace_r?

Returns true if this enum value equals BRACE_R

Source
bracket_l?

Returns true if this enum value equals BRACKET_L

Source
bracket_r?

Returns true if this enum value equals BRACKET_R

Source
colon?

Returns true if this enum value equals COLON

Source
comment?

Returns true if this enum value equals COMMENT

Source
dollar?

Returns true if this enum value equals DOLLAR

Source
eof?

Returns true if this enum value equals EOF

Source
equals?

Returns true if this enum value equals EQUALS

Source
float?

Returns true if this enum value equals FLOAT

Source
int?

Returns true if this enum value equals INT

Source
name?

Returns true if this enum value equals NAME

Source
paren_l?

Returns true if this enum value equals PAREN_L

Source
paren_r?

Returns true if this enum value equals PAREN_R

Source
pipe?

Returns true if this enum value equals PIPE

Source
spread?

Returns true if this enum value equals SPREAD

Source
string?

Returns true if this enum value equals STRING

Source