stack.push(opName);
return null;
} else if (o == BEGIN_OPERAND_SUBSTRING) {
Expression begin = (Expression) stack.pop();
Expression str = (Expression) stack.pop();
e = new Substring(str, begin, e);
} else {
throw new JDOException("Protocol error: " + o);
}
break;
}