Package org.neo4j.cypherdsl.query

Examples of org.neo4j.cypherdsl.query.Operator


    private final Identifier owner;
    private final Identifier name;

    Property(Identifier owner, Identifier name)
    {
        super( new Operator( owner, "." ), name );
        this.owner = owner;
        this.name = name;
    }
View Full Code Here


     * @param name
     * @return
     */
    public static Expression as( Expression expression, String name )
    {
        return new Value( new Operator( expression, " AS " ), identifier( name ) );
    }
View Full Code Here

     * @param name
     * @return
     */
    public static Expression as( Expression expression, Identifier name )
    {
        return new Value( new Operator( expression, " AS " ), name );
    }
View Full Code Here

     * @param expression
     * @return
     */
    public static Expression distinct( Expression expression )
    {
        return new Value( new Operator( "DISTINCT " ), expression );
    }
View Full Code Here

TOP

Related Classes of org.neo4j.cypherdsl.query.Operator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.