All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jcr.query.qom.Literal Maven / Gradle / Ivy

There is a newer version: 2024.9.17689.20240905T073330Z-240800
Show newest version
/*
 * Copyright 2009 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr.query.qom;

import javax.jcr.Value;

/**
 * Evaluates to a literal value.
 *
 * @since JCR 2.0
 */
public interface Literal
        extends StaticOperand {
    /**
     * Gets the value of the literal.
     *
     * @return the value of the literal.
     */
    public Value getLiteralValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy