Uses of Class
org.apache.camel.language.simple.types.TokenType

Packages that use TokenType
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
protected  boolean BaseSimpleParser.accept(TokenType accept)
          Accept the given token.
protected  void BaseSimpleParser.expect(TokenType expect)
          Expect a given token
protected  void BaseSimpleParser.expectAndAcceptMore(TokenType expect)
          Expect and accept a given number of tokens in sequence.
static SimpleToken SimpleTokenizer.nextToken(String expression, int index, boolean allowEscape, TokenType... filter)
          Create the next token
protected  void BaseSimpleParser.nextToken(TokenType... filter)
          Advances the parser position to the next known SimpleToken in the input.
 

Uses of TokenType in org.apache.camel.language.simple.types
 

Methods in org.apache.camel.language.simple.types that return TokenType
 TokenType SimpleTokenType.getType()
          Gets the type of this token
static 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
SimpleTokenType(TokenType type, String value)
           
 



Apache Camel