Uses of Class
org.apache.camel.language.simple.types.TokenType
-
Packages that use TokenType Package Description org.apache.camel.language.simple Camel Simple language.org.apache.camel.language.simple.types Types for the Camel Simple language. -
-
Uses of TokenType in org.apache.camel.language.simple
Methods in org.apache.camel.language.simple with parameters of type TokenType Modifier and Type Method Description protected boolean
BaseSimpleParser. accept(TokenType accept)
Accept the given token.protected void
BaseSimpleParser. expect(TokenType expect)
Expect a given tokenprotected void
BaseSimpleParser. expectAndAcceptMore(TokenType expect)
Expect and accept a given number of tokens in sequence.protected void
BaseSimpleParser. nextToken(TokenType... filter)
Advances the parser position to the next knownSimpleToken
in the input.static SimpleToken
SimpleTokenizer. nextToken(String expression, int index, boolean allowEscape, TokenType... filter)
Create the next token -
Uses of TokenType in org.apache.camel.language.simple.types
Methods in org.apache.camel.language.simple.types that return TokenType Modifier and Type Method Description TokenType
SimpleTokenType. getType()
Gets the type of this tokenstatic TokenType
TokenType. valueOf(String name)
Returns the enum constant of this type with the specified name.static TokenType[]
TokenType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.camel.language.simple.types with parameters of type TokenType Constructor Description SimpleTokenType(TokenType type, String value)
-