01: package javax.jcr.query.qom; 02: 03: import javax.jcr.Value; 04: 05: /** 06: * A literal value. 07: */ 08: public interface Literal extends StaticOperand { 09: /** 10: * Gets the value. 11: * 12: * @return the value; non-null 13: */ 14: public Value getValue(); 15: } 16: 17: // EOF