本文整理了Java中io.ebean.Query.validate
方法的一些代码示例,展示了Query.validate
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.validate
方法的具体详情如下:
包路径:io.ebean.Query
类名称:Query
方法名:validate
[英]Returns the set of properties or paths that are unknown (do not map to known properties or paths).
Validate the query checking the where and orderBy expression paths to confirm if they represent valid properties or paths for the given bean type.
[中]返回未知的属性或路径集(不映射到已知属性或路径)。
验证查询,检查where和orderBy表达式路径,以确认它们是否代表给定bean类型的有效属性或路径。
代码示例来源:origin: io.ebean/ebean-querybean
/**
* Returns the set of properties or paths that are unknown (do not map to known properties or paths).
* <p>
* Validate the query checking the where and orderBy expression paths to confirm if
* they represent valid properties or paths for the given bean type.
* </p>
*/
public Set<String> validate() {
return query.validate();
}
代码示例来源:origin: org.actframework/act-ebean2
@Override
public Set<String> validate() {
return q.validate();
}
代码示例来源:origin: org.actframework/act-ebean
@Override
public Set<String> validate() {
return q.validate();
}
内容来源于网络,如有侵权,请联系作者删除!