jaskell.sql.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaskell-java8 Show documentation
Show all versions of jaskell-java8 Show documentation
This is a utils library for java 8 project.
It include parsec combinators and sql generators library.
package jaskell.sql;
import jaskell.script.Directive;
import jaskell.script.Parameter;
import java.util.List;
public class Group implements Directive {
Directive _prefix;
@Override
public String script() {
return String.format("%s GROUP", _prefix.script());
}
@Override
public List> parameters() {
return _prefix.parameters();
}
public By by() {
By re = new By();
re._prefix = this;
return re;
}
public By by(String names) {
By re = new By(names);
re._prefix = this;
return re;
}
public By by(String... names) {
By re = new By(names);
re._prefix = this;
return re;
}
public By by(Directive... names) {
By re = new By(names);
re._prefix = this;
return re;
}
public By by(List names) {
By re = new By(names);
re._prefix = this;
return re;
}
public Order order() {
Order re = new Order();
re._prefix = this;
return re;
}
public static class By extends jaskell.sql.By implements CouldOrder, CouldHaving {
public By() {
super();
}
public By(String names) {
super(names);
}
public By(String... names) {
super(names);
}
public By(Directive... names) {
super(names);
}
public By(List names) {
super(names);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy