Uses of Enum Class
io.pebbletemplates.pebble.lexer.Token.Type
Packages that use Token.Type
-
Uses of Token.Type in io.pebbletemplates.pebble.lexer
Methods in io.pebbletemplates.pebble.lexer that return Token.TypeModifier and TypeMethodDescriptionToken.getType()static Token.TypeReturns the enum constant of this class with the specified name.static Token.Type[]Token.Type.values()Returns an array containing the constants of this enum class, 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.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