Uses of Class
org.apache.camel.language.simple.types.SimpleToken
-
Packages that use SimpleToken Package Description org.apache.camel.language.simple Camel Simple language.org.apache.camel.language.simple.ast AST for the Camel Simple language. -
-
Uses of SimpleToken in org.apache.camel.language.simple
Fields in org.apache.camel.language.simple declared as SimpleToken Modifier and Type Field Description protected SimpleToken
BaseSimpleParser. token
Fields in org.apache.camel.language.simple with type parameters of type SimpleToken Modifier and Type Field Description protected List<SimpleToken>
BaseSimpleParser. tokens
Methods in org.apache.camel.language.simple that return SimpleToken Modifier and Type Method Description static SimpleToken
SimpleTokenizer. nextToken(String expression, int index, boolean allowEscape)
Create the next tokenstatic SimpleToken
SimpleTokenizer. nextToken(String expression, int index, boolean allowEscape, TokenType... filter)
Create the next token -
Uses of SimpleToken in org.apache.camel.language.simple.ast
Fields in org.apache.camel.language.simple.ast declared as SimpleToken Modifier and Type Field Description protected SimpleToken
BaseSimpleNode. token
Methods in org.apache.camel.language.simple.ast that return SimpleToken Modifier and Type Method Description SimpleToken
BaseSimpleNode. getToken()
SimpleToken
SimpleNode. getToken()
Gets the token by which this model was based uponConstructors in org.apache.camel.language.simple.ast with parameters of type SimpleToken Constructor Description BaseSimpleNode(SimpleToken token)
BinaryExpression(SimpleToken token)
BooleanExpression(SimpleToken token)
CompositeNodes(SimpleToken token)
DoubleQuoteEnd(SimpleToken token)
DoubleQuoteStart(SimpleToken token)
LiteralExpression(SimpleToken token)
LogicalExpression(SimpleToken token)
NullExpression(SimpleToken token)
NumericExpression(SimpleToken token, String text)
SimpleFunctionEnd(SimpleToken token)
SimpleFunctionExpression(SimpleToken token, Map<String,org.apache.camel.Expression> cacheExpression)
SimpleFunctionStart(SimpleToken token, Map<String,org.apache.camel.Expression> cacheExpression)
SingleQuoteEnd(SimpleToken token)
SingleQuoteStart(SimpleToken token)
UnaryExpression(SimpleToken token)
-