Skip navigation links
A B C D E F G H I J K L M N O P R S T U V Z 

A

add_escapes(String) - Method in exception io.atlasmap.expression.parser.ParseException
Used to convert raw characters to their escaped version when these raw version cannot be used as part of an ASCII string literal.
addEscapes(String) - Static method in error io.atlasmap.expression.parser.TokenMgrError
Replaces unprintable characters by their espaced (or unicode escaped) equivalents in the given string
addExpression() - Method in class io.atlasmap.expression.parser.Parser
 
adjustBeginLineColumn(int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
Method to adjust line and column numbers for the start of a token.
AND - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
andExpression() - Method in class io.atlasmap.expression.parser.Parser
 
ArithmeticExpression - Class in io.atlasmap.expression.internal
An expression which performs an operation on two expression values
ArithmeticExpression(Expression, Expression) - Constructor for class io.atlasmap.expression.internal.ArithmeticExpression
 
asBoolean(int) - Method in class io.atlasmap.expression.internal.ComparisonExpression
 
asBooleanExpression(Expression) - Static method in interface io.atlasmap.expression.internal.BooleanExpression
 
asNumber(Object) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 

B

backup(int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
beginColumn - Variable in class io.atlasmap.expression.parser.Token
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.
beginLine - Variable in class io.atlasmap.expression.parser.Token
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.
BeginToken() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
BinaryExpression - Class in io.atlasmap.expression.internal
An expression which performs an operation on two expression values.
BinaryExpression(Expression, Expression) - Constructor for class io.atlasmap.expression.internal.BinaryExpression
 
BLOCK_COMMENT - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
BooleanExpression - Interface in io.atlasmap.expression.internal
A BooleanExpression is an expression that always produces a Boolean result.
bufcolumn - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
buffer - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
bufline - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
bufpos - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 

C

cache - Static variable in interface io.atlasmap.expression.Expression
 
checkLessThanOperand(Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
Only Numeric expressions can be used in >, >=, < or <= expressions.s
clearCache() - Static method in interface io.atlasmap.expression.Expression
 
column - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
compare(Comparable, Comparable) - Method in class io.atlasmap.expression.internal.ComparisonExpression
 
ComparisonExpression - Class in io.atlasmap.expression.internal
A filter performing a comparison of two objects
ComparisonExpression(Expression, Expression) - Constructor for class io.atlasmap.expression.internal.ComparisonExpression
 
comparisonExpression() - Method in class io.atlasmap.expression.parser.Parser
 
ConstantExpression - Class in io.atlasmap.expression.internal
Represents a constant expression
ConstantExpression(Object) - Constructor for class io.atlasmap.expression.internal.ConstantExpression
 
CONVERT_STRING_EXPRESSIONS - Static variable in class io.atlasmap.expression.internal.ComparisonExpression
 
createAND(BooleanExpression, BooleanExpression) - Static method in class io.atlasmap.expression.internal.LogicExpression
 
createBetween(Expression, Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createBooleanCast(Expression) - Static method in class io.atlasmap.expression.internal.UnaryExpression
 
createDivide(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ArithmeticExpression
 
createEqual(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createFloat(String) - Static method in class io.atlasmap.expression.internal.ConstantExpression
 
createFromDecimal(String) - Static method in class io.atlasmap.expression.internal.ConstantExpression
 
createFromHex(String) - Static method in class io.atlasmap.expression.internal.ConstantExpression
 
createFromOctal(String) - Static method in class io.atlasmap.expression.internal.ConstantExpression
 
createGreaterThan(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createGreaterThanEqual(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createInExpression(VariableExpression, List<Object>, boolean) - Static method in class io.atlasmap.expression.internal.UnaryExpression
 
createInFilter(Expression, List) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createIsNotNull(Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createIsNull(Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createLessThan(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createLessThanEqual(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createLike(Expression, String, String) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createMinus(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ArithmeticExpression
 
createMod(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ArithmeticExpression
 
createMultiply(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ArithmeticExpression
 
createNegate(Expression) - Static method in class io.atlasmap.expression.internal.UnaryExpression
 
createNOT(BooleanExpression) - Static method in class io.atlasmap.expression.internal.UnaryExpression
 
createNotBetween(Expression, Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createNotEqual(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createNotInFilter(Expression, List) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createNotLike(Expression, String, String) - Static method in class io.atlasmap.expression.internal.ComparisonExpression
 
createOR(BooleanExpression, BooleanExpression) - Static method in class io.atlasmap.expression.internal.LogicExpression
 
createPlus(Expression, Expression) - Static method in class io.atlasmap.expression.internal.ArithmeticExpression
 
curChar - Variable in class io.atlasmap.expression.parser.ParserTokenManager
 
currentToken - Variable in exception io.atlasmap.expression.parser.ParseException
This is the last token that has been consumed successfully.

D

debugStream - Variable in class io.atlasmap.expression.parser.ParserTokenManager
 
DECIMAL_LITERAL - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
DEFAULT - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
disable_tracing() - Method in class io.atlasmap.expression.parser.Parser
 
divide(Number, Number) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 
Done() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
DOUBLE - Static variable in class io.atlasmap.expression.internal.ArithmeticExpression
 

E

enable_tracing() - Method in class io.atlasmap.expression.parser.Parser
 
encodeString(String) - Static method in class io.atlasmap.expression.internal.ConstantExpression
Encodes the value of string so that it looks like it would look like when it was provided in a selector.
endColumn - Variable in class io.atlasmap.expression.parser.Token
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.
endLine - Variable in class io.atlasmap.expression.parser.Token
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.
EOF - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
eol - Variable in exception io.atlasmap.expression.parser.ParseException
The end of line string for this machine.
equalityExpression() - Method in class io.atlasmap.expression.parser.Parser
 
equals(Object) - Method in class io.atlasmap.expression.internal.BinaryExpression
TODO: more efficient hashCode()
equals(Object) - Method in class io.atlasmap.expression.internal.ConstantExpression
TODO: more efficient hashCode()
equals(Object) - Method in class io.atlasmap.expression.internal.UnaryExpression
TODO: more efficient hashCode()
equals(Object) - Method in class io.atlasmap.expression.internal.VariableExpression
 
evaluate(ExpressionContext) - Method in interface io.atlasmap.expression.Expression
Execute the expression against the given context.
evaluate(ExpressionContext) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 
evaluate(Object, Object) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 
evaluate(ExpressionContext) - Method in class io.atlasmap.expression.internal.ComparisonExpression
 
evaluate(ExpressionContext) - Method in class io.atlasmap.expression.internal.ConstantExpression
 
evaluate(ExpressionContext) - Method in class io.atlasmap.expression.internal.LogicExpression
 
evaluate(ExpressionContext) - Method in class io.atlasmap.expression.internal.VariableExpression
 
ExpandBuff(boolean) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
expectedTokenSequences - Variable in exception io.atlasmap.expression.parser.ParseException
Each entry in this array is an array of integers.
EXPONENT - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
Expression - Interface in io.atlasmap.expression
Parses and evaluates a simple expression language.
ExpressionContext - Interface in io.atlasmap.expression
A Filterable is the object being evaluated by the filters.
ExpressionException - Exception in io.atlasmap.expression
 
ExpressionException() - Constructor for exception io.atlasmap.expression.ExpressionException
 
ExpressionException(String, Throwable) - Constructor for exception io.atlasmap.expression.ExpressionException
 
ExpressionException(String) - Constructor for exception io.atlasmap.expression.ExpressionException
 
ExpressionException(Throwable) - Constructor for exception io.atlasmap.expression.ExpressionException
 

F

FALSE - Static variable in class io.atlasmap.expression.internal.ConstantExpression
 
FALSE - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
FillBuff() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
FLOATING_POINT_LITERAL - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
functionExpr() - Method in class io.atlasmap.expression.parser.Parser
 
FunctionResolver - Interface in io.atlasmap.expression
 
functionResolver - Variable in class io.atlasmap.expression.parser.Parser
 

G

generateParseException() - Method in class io.atlasmap.expression.parser.Parser
 
getBeginColumn() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getBeginLine() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getColumn() - Method in class io.atlasmap.expression.parser.SimpleCharStream
Deprecated. 
getEndColumn() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getEndLine() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getExpressionSymbol() - Method in class io.atlasmap.expression.internal.BinaryExpression
Returns the symbol that represents this binary expression.
getExpressionSymbol() - Method in class io.atlasmap.expression.internal.UnaryExpression
Returns the symbol that represents this binary expression.
GetImage() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getLeft() - Method in class io.atlasmap.expression.internal.BinaryExpression
 
getLine() - Method in class io.atlasmap.expression.parser.SimpleCharStream
Deprecated. 
getMaxCacheSize() - Method in class io.atlasmap.expression.internal.LRUCache
 
getMessage() - Method in exception io.atlasmap.expression.parser.ParseException
This method has the standard behavior when this object has been created using the standard constructors.
getMessage() - Method in error io.atlasmap.expression.parser.TokenMgrError
You can also modify the body of this method to customize your error messages.
getName() - Method in class io.atlasmap.expression.internal.VariableExpression
 
getNextToken() - Method in class io.atlasmap.expression.parser.Parser
 
getNextToken() - Method in class io.atlasmap.expression.parser.ParserTokenManager
 
getRight() - Method in class io.atlasmap.expression.internal.BinaryExpression
 
getRight() - Method in class io.atlasmap.expression.internal.UnaryExpression
 
GetSuffix(int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getTabSize(int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
getToken(int) - Method in class io.atlasmap.expression.parser.Parser
 
getValue() - Method in class io.atlasmap.expression.internal.ConstantExpression
 
getVariable(String) - Method in interface io.atlasmap.expression.ExpressionContext
Extracts the named variable

H

hashCode() - Method in class io.atlasmap.expression.internal.BinaryExpression
TODO: more efficient hashCode()
hashCode() - Method in class io.atlasmap.expression.internal.ConstantExpression
TODO: more efficient hashCode()
hashCode() - Method in class io.atlasmap.expression.internal.UnaryExpression
TODO: more efficient hashCode()
hashCode() - Method in class io.atlasmap.expression.internal.VariableExpression
 
HEX_LITERAL - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 

I

ID - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
image - Variable in class io.atlasmap.expression.parser.Token
The string image of the token.
inBuf - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
input_stream - Variable in class io.atlasmap.expression.parser.ParserTokenManager
 
inputStream - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
INTEGER - Static variable in class io.atlasmap.expression.internal.ArithmeticExpression
 
io.atlasmap.expression - package io.atlasmap.expression
 
io.atlasmap.expression.internal - package io.atlasmap.expression.internal
Internal implementation details for the AtlasMap expression evaluator.
io.atlasmap.expression.parser - package io.atlasmap.expression.parser
 

J

jj_nt - Variable in class io.atlasmap.expression.parser.Parser
 
jjFillToken() - Method in class io.atlasmap.expression.parser.ParserTokenManager
 
jjstrLiteralImages - Static variable in class io.atlasmap.expression.parser.ParserTokenManager
 

K

kind - Variable in class io.atlasmap.expression.parser.Token
An integer that describes the kind of this token.

L

left - Variable in class io.atlasmap.expression.internal.BinaryExpression
 
LexicalError(boolean, int, int, int, String, char) - Static method in error io.atlasmap.expression.parser.TokenMgrError
Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical error.
lexStateNames - Static variable in class io.atlasmap.expression.parser.ParserTokenManager
 
line - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
LINE_COMMENT - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
literal() - Method in class io.atlasmap.expression.parser.Parser
 
LogicExpression - Class in io.atlasmap.expression.internal
A filter performing a comparison of two objects
LogicExpression(BooleanExpression, BooleanExpression) - Constructor for class io.atlasmap.expression.internal.LogicExpression
 
LONG - Static variable in class io.atlasmap.expression.internal.ArithmeticExpression
 
lookingAhead - Variable in class io.atlasmap.expression.parser.Parser
 
LRUCache<K,V> - Class in io.atlasmap.expression.internal
A Simple LRU Cache
LRUCache() - Constructor for class io.atlasmap.expression.internal.LRUCache
Default constructor for an LRU Cache The default capacity is 10000
LRUCache(int) - Constructor for class io.atlasmap.expression.internal.LRUCache
Constructs a LRUCache with a maximum capacity
LRUCache(int, int, float, boolean) - Constructor for class io.atlasmap.expression.internal.LRUCache
Constructs an empty LRUCache instance with the specified initial capacity, maximumCacheSize,load factor and ordering mode.

M

matches(ExpressionContext) - Method in interface io.atlasmap.expression.internal.BooleanExpression
 
matches(ExpressionContext) - Method in class io.atlasmap.expression.internal.ComparisonExpression
 
matches(ExpressionContext) - Method in class io.atlasmap.expression.internal.LogicExpression
 
maxCacheSize - Variable in class io.atlasmap.expression.internal.LRUCache
 
maxNextCharInd - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
minus(Number, Number) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 
mod(Number, Number) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 
multExpr() - Method in class io.atlasmap.expression.parser.Parser
 
multiply(Number, Number) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 

N

newToken(int) - Static method in class io.atlasmap.expression.parser.Token
Returns a new Token object, by default.
next - Variable in class io.atlasmap.expression.parser.Token
A reference to the next regular (non-special) token from the input stream.
NULL - Static variable in class io.atlasmap.expression.internal.ConstantExpression
 
NULL - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 

O

OCTAL_LITERAL - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
onCacheEviction(Map.Entry<K, V>) - Method in class io.atlasmap.expression.internal.LRUCache
 
OR - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
orExpression() - Method in class io.atlasmap.expression.parser.Parser
 

P

parse(String, FunctionResolver) - Static method in interface io.atlasmap.expression.Expression
 
parse() - Method in class io.atlasmap.expression.parser.Parser
 
ParseException - Exception in io.atlasmap.expression.parser
This exception is thrown when parse errors are encountered.
ParseException(Token, int[][], String[]) - Constructor for exception io.atlasmap.expression.parser.ParseException
This constructor is used by the method "generateParseException" in the generated parser.
ParseException() - Constructor for exception io.atlasmap.expression.parser.ParseException
The following constructors are for use by you for whatever purpose you can think of.
ParseException(String) - Constructor for exception io.atlasmap.expression.parser.ParseException
 
Parser - Class in io.atlasmap.expression.parser
Parser for AtlasMap expressions.
Parser(InputStream) - Constructor for class io.atlasmap.expression.parser.Parser
 
Parser(InputStream, String) - Constructor for class io.atlasmap.expression.parser.Parser
 
Parser(Reader) - Constructor for class io.atlasmap.expression.parser.Parser
 
Parser(ParserTokenManager) - Constructor for class io.atlasmap.expression.parser.Parser
 
ParserConstants - Interface in io.atlasmap.expression.parser
 
ParserTokenManager - Class in io.atlasmap.expression.parser
 
ParserTokenManager(SimpleCharStream) - Constructor for class io.atlasmap.expression.parser.ParserTokenManager
 
ParserTokenManager(SimpleCharStream, int) - Constructor for class io.atlasmap.expression.parser.ParserTokenManager
 
plus(Number, Number) - Method in class io.atlasmap.expression.internal.ArithmeticExpression
 
prevCharIsCR - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
prevCharIsLF - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
primaryExpr() - Method in class io.atlasmap.expression.parser.Parser
 

R

readChar() - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream) - Method in class io.atlasmap.expression.parser.Parser
 
ReInit(InputStream, String) - Method in class io.atlasmap.expression.parser.Parser
 
ReInit(Reader) - Method in class io.atlasmap.expression.parser.Parser
 
ReInit(ParserTokenManager) - Method in class io.atlasmap.expression.parser.Parser
 
ReInit(SimpleCharStream) - Method in class io.atlasmap.expression.parser.ParserTokenManager
 
ReInit(SimpleCharStream, int) - Method in class io.atlasmap.expression.parser.ParserTokenManager
 
ReInit(Reader, int, int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(Reader, int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(Reader) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream, String, int, int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream, int, int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream, String) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream, String, int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
ReInit(InputStream, int, int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
removeEldestEntry(Map.Entry<K, V>) - Method in class io.atlasmap.expression.internal.LRUCache
 
resolve(String, List<Expression>) - Method in interface io.atlasmap.expression.FunctionResolver
 
right - Variable in class io.atlasmap.expression.internal.BinaryExpression
 
right - Variable in class io.atlasmap.expression.internal.UnaryExpression
 

S

setDebugStream(PrintStream) - Method in class io.atlasmap.expression.parser.ParserTokenManager
 
setLeft(Expression) - Method in class io.atlasmap.expression.internal.BinaryExpression
 
setMaxCacheSize(int) - Method in class io.atlasmap.expression.internal.LRUCache
 
setRight(Expression) - Method in class io.atlasmap.expression.internal.BinaryExpression
 
setRight(Expression) - Method in class io.atlasmap.expression.internal.UnaryExpression
 
setTabSize(int) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream - Class in io.atlasmap.expression.parser
An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
SimpleCharStream(Reader, int, int, int) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(Reader, int, int) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(Reader) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(InputStream, String, int, int, int) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(InputStream, int, int, int) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(InputStream, String, int, int) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(InputStream, int, int) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(InputStream, String) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
SimpleCharStream(InputStream) - Constructor for class io.atlasmap.expression.parser.SimpleCharStream
 
specialConstructor - Variable in exception io.atlasmap.expression.parser.ParseException
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).
specialToken - Variable in class io.atlasmap.expression.parser.Token
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token.
staticFlag - Static variable in class io.atlasmap.expression.parser.SimpleCharStream
 
STRING_LITERAL - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
stringLiteral() - Method in class io.atlasmap.expression.parser.Parser
 
Strings - Class in io.atlasmap.expression.internal
 
stripPrefix(String, String) - Static method in class io.atlasmap.expression.internal.Strings
 
stripSuffix(String, String) - Static method in class io.atlasmap.expression.internal.Strings
 
SwitchTo(int) - Method in class io.atlasmap.expression.parser.ParserTokenManager
 

T

tabSize - Variable in class io.atlasmap.expression.parser.SimpleCharStream
 
token - Variable in class io.atlasmap.expression.parser.Parser
 
Token - Class in io.atlasmap.expression.parser
Describes the input token stream.
Token() - Constructor for class io.atlasmap.expression.parser.Token
 
token_source - Variable in class io.atlasmap.expression.parser.Parser
 
tokenImage - Variable in exception io.atlasmap.expression.parser.ParseException
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred.
tokenImage - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
TokenMgrError - Error in io.atlasmap.expression.parser
 
TokenMgrError() - Constructor for error io.atlasmap.expression.parser.TokenMgrError
 
TokenMgrError(String, int) - Constructor for error io.atlasmap.expression.parser.TokenMgrError
 
TokenMgrError(boolean, int, int, int, String, char, int) - Constructor for error io.atlasmap.expression.parser.TokenMgrError
 
toString() - Method in class io.atlasmap.expression.internal.BinaryExpression
 
toString() - Method in class io.atlasmap.expression.internal.ConstantExpression
 
toString() - Method in class io.atlasmap.expression.internal.UnaryExpression
 
toString() - Method in class io.atlasmap.expression.internal.VariableExpression
 
toString() - Method in class io.atlasmap.expression.parser.Token
Returns the image.
TRUE - Static variable in class io.atlasmap.expression.internal.ConstantExpression
 
TRUE - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 

U

unaryExpr() - Method in class io.atlasmap.expression.parser.Parser
 
UnaryExpression - Class in io.atlasmap.expression.internal
An expression which performs an operation on two expression values
UnaryExpression(Expression) - Constructor for class io.atlasmap.expression.internal.UnaryExpression
 
UpdateLineColumn(char) - Method in class io.atlasmap.expression.parser.SimpleCharStream
 

V

variable() - Method in class io.atlasmap.expression.parser.Parser
 
VARIABLE - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
VariableExpression - Class in io.atlasmap.expression.internal
Represents a property expression
VariableExpression(String) - Constructor for class io.atlasmap.expression.internal.VariableExpression
 

Z

ZERO - Static variable in interface io.atlasmap.expression.parser.ParserConstants
 
A B C D E F G H I J K L M N O P R S T U V Z 
Skip navigation links

Copyright © 2019 JBoss by Red Hat. All rights reserved.