com.rethinkdb.gen.ast.Args Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rethinkdb-driver Show documentation
Show all versions of rethinkdb-driver Show documentation
Official Java driver for RethinkDB
The newest version!
// Autogenerated by metajava.py.
// Do not edit this file directly.
// The template for this file is located at:
// ../../../../../../../../templates/AstSubclass.java
package com.rethinkdb.gen.ast;
import com.rethinkdb.gen.proto.TermType;
import com.rethinkdb.gen.exc.ReqlDriverError;
import com.rethinkdb.model.Arguments;
import com.rethinkdb.model.OptArgs;
import com.rethinkdb.ast.ReqlAst;
public class Args extends ReqlExpr {
public Args(Object arg) {
this(new Arguments(arg), null);
}
public Args(Arguments args) {
this(args, null);
}
public Args(Arguments args, OptArgs optargs) {
super(TermType.ARGS, args, optargs);
}
}