| |
|
| java.lang.Object ognl.OgnlParser
OgnlParser | public class OgnlParser implements OgnlParserTreeConstants,OgnlParserConstants(Code) | | OgnlParser is a JavaCC parser class; it translates OGNL expressions into abstract
syntax trees (ASTs) that can then be interpreted by the getValue and setValue methods.
|
Inner Class :final static class JJCalls | |
lookingAhead | public boolean lookingAhead(Code) | | |
disable_tracing | final public void disable_tracing()(Code) | | |
enable_tracing | final public void enable_tracing()(Code) | | |
projection | final public void projection() throws ParseException(Code) | | Apply an expression to all elements of a collection, creating a new collection
as the result.
|
selectAll | final public void selectAll() throws ParseException(Code) | | Apply a boolean expression to all elements of a collection, creating a new collection
containing those elements for which the expression returned true.
|
selectFirst | final public void selectFirst() throws ParseException(Code) | | Apply a boolean expression to all elements of a collection, creating a new collection
containing those elements for the first element for which the expression returned true.
|
selectLast | final public void selectLast() throws ParseException(Code) | | Apply a boolean expression to all elements of a collection, creating a new collection
containing those elements for the first element for which the expression returned true.
|
topLevelExpression | final public Node topLevelExpression() throws ParseException(Code) | | This is the top-level construct of OGNL.
|
|
|
|