com.rethinkdb.gen.ast.Seconds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qj-rethinkdb-driver Show documentation
Show all versions of qj-rethinkdb-driver Show documentation
Java driver for RethinkDB (Modified from Official 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 Seconds extends ReqlExpr {
public Seconds(Object arg) {
this(new Arguments(arg), null);
}
public Seconds(Arguments args){
this(args, null);
}
public Seconds(Arguments args, OptArgs optargs) {
super(TermType.SECONDS, args, optargs);
}
}