mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-21 21:14:12 +08:00
18 lines
417 B
Java
18 lines
417 B
Java
package com.mysema.query.sql;
|
|
|
|
import com.mysema.query.types.Expr;
|
|
import com.mysema.query.types.custom.CSimple;
|
|
import com.mysema.query.types.expr.ENumber;
|
|
|
|
public class Wildcard {
|
|
|
|
private static final long serialVersionUID = -675749944676437551L;
|
|
|
|
public static final Expr<Object[]> all = CSimple.create(Object[].class, "*");
|
|
|
|
public static ENumber<Long> count() {
|
|
return all.count();
|
|
}
|
|
|
|
}
|