LENGTH
expression ::= LENGTH(string_primary)
@see LengthExpression @version 2.4 @since 2.4 @author Pascal Filion
1158115911601161116211631164116511661167116811691170
@Override public void visit(LengthExpression expression) { expression.getExpression().accept(this); LengthExpressionStateObject stateObject = new LengthExpressionStateObject( parent, this.stateObject ); stateObject.setExpression(expression); this.stateObject = stateObject; }
376377378379380381382383384
*/ public T length(T builder) { checkBuilder(builder); StateObject stateObject = new LengthExpressionStateObject(parent, pop()); add(stateObject); return (T) this; }