01: /*
02: * Copyright 2006 Day Management AG, Switzerland. All rights reserved.
03: */
04: package javax.jcr.query.qom;
05:
06: /**
07: * An operand whose value can be determined from static analysis of the query,
08: * prior to its evaluation.
09: *
10: * @since JCR 2.0
11: */
12: public interface StaticOperand extends Operand {
13: }
14:
15: // EOF
|