Package com.couchbase.client.java.query.dsl.path

Source Code of com.couchbase.client.java.query.dsl.path.DefaultFromPath

package com.couchbase.client.java.query.dsl.path;

import com.couchbase.client.java.query.dsl.element.FromElement;

/**
* .
*
* @author Michael Nitschinger
*/
public class DefaultFromPath extends DefaultLetPath implements FromPath {

    public DefaultFromPath(AbstractPath parent) {
        super(parent);
    }

    @Override
    public AsPath from(String from) {
        element(new FromElement(from));
        return new DefaultAsPath(this);
    }
}
TOP

Related Classes of com.couchbase.client.java.query.dsl.path.DefaultFromPath

TOP
Copyright © 2018 www.massapi.com. 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.