ma.vi.esql.builder.Attr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esql Show documentation
Show all versions of esql Show documentation
ESQL, SQL enhanced with metadata compiling to various relational databases
/*
* Copyright (c) 2020 Vikash Madhow
*/
package ma.vi.esql.builder;
/**
* @author Vikash Madhow ([email protected])
*/
public class Attr {
public Attr(String name, String expr) {
this.name = name;
this.expr = expr;
}
public static Attr of(String name, String expr) {
return new Attr(name, expr);
}
public final String name;
public final String expr;
}