Uses of Enum
io.pebbletemplates.pebble.lexer.Token.Type
Packages that use Token.Type
-
Uses of Token.Type in io.pebbletemplates.pebble.lexer
Subclasses with type arguments of type Token.Type in io.pebbletemplates.pebble.lexerFields in io.pebbletemplates.pebble.lexer declared as Token.TypeMethods in io.pebbletemplates.pebble.lexer that return Token.TypeModifier and TypeMethodDescriptionToken.getType()static Token.TypeReturns the enum constant of this type with the specified name.static Token.Type[]Token.Type.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.pebbletemplates.pebble.lexer with parameters of type Token.TypeModifier and TypeMethodDescriptionTokenStream.expect(Token.Type type) Checks the current token to see if it matches the provided type.TokenStream.expect(Token.Type type, String value) Checks the current token to see if it matches the provided type.private TokenLexerImpl.pushToken(Token.Type type) Create a Token with a Token Type but without no value onto the list of tokens that we are maintaining.private TokenLexerImpl.pushToken(Token.Type type, String value) Create a Token of a certain type and value and push it into the list of tokens that we are maintaining.voidToken.setType(Token.Type type) booleanToken.test(Token.Type type) booleanToken.test(Token.Type type, String... values) Constructors in io.pebbletemplates.pebble.lexer with parameters of type Token.Type