There is no need to explicitly create instances of this class. Instead use {@link DBColumnExpr#as(String) }
291292293294295296297
* @param alias the alias name * @return the new DBAliasExpr object */ public DBColumnExpr as(String alias) { return new DBAliasExpr(this, alias); }
302303304305306307308
* @param column the column whose name serves as an alias for the current expression * @return the new DBAliasExpr object */ public DBColumnExpr as(DBColumn column) { return new DBAliasExpr(this, column.getName()); }
287288289290291292293
298299300301302303304
284285286287288289290
295296297298299300301
280281282283284285286