本文整理了Java中org.apache.openjpa.kernel.Query.hasSubclasses
方法的一些代码示例,展示了Query.hasSubclasses
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.hasSubclasses
方法的具体详情如下:
包路径:org.apache.openjpa.kernel.Query
类名称:Query
方法名:hasSubclasses
暂无
代码示例来源:origin: org.apache.openjpa/openjpa-all
public boolean hasSubclasses() {
try {
return _query.hasSubclasses();
} catch (RuntimeException re) {
throw translate(re);
}
}
代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel
public boolean hasSubclasses() {
try {
return _query.hasSubclasses();
} catch (RuntimeException re) {
throw translate(re);
}
}
代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa
public boolean hasSubclasses() {
try {
return _query.hasSubclasses();
} catch (RuntimeException re) {
throw translate(re);
}
}
代码示例来源:origin: org.apache.openjpa/openjpa-kernel
public boolean hasSubclasses() {
try {
return _query.hasSubclasses();
} catch (RuntimeException re) {
throw translate(re);
}
}
代码示例来源:origin: org.apache.openejb.patch/openjpa
public boolean hasSubclasses() {
try {
return _query.hasSubclasses();
} catch (RuntimeException re) {
throw translate(re);
}
}
代码示例来源:origin: org.apache.openejb.patch/openjpa
/**
* Construct.
*
* @param id an identifier for this query to be used as cache key
* @param corresponding data store language query string
* @param compiled a compiled query
*/
public PreparedQueryImpl(String id, String sql, Query compiled) {
this._id = id;
this._sql = sql;
if (compiled != null) {
_candidate = compiled.getCandidateType();
_subclasses = compiled.hasSubclasses();
}
}
代码示例来源:origin: org.apache.openjpa/openjpa-jdbc
/**
* Construct.
*
* @param id an identifier for this query to be used as cache key
* @param corresponding data store language query string
* @param compiled a compiled query
*/
public PreparedQueryImpl(String id, String sql, Query compiled) {
this._id = id;
this._sql = sql;
if (compiled != null) {
_candidate = compiled.getCandidateType();
_subclasses = compiled.hasSubclasses();
}
}
代码示例来源:origin: org.apache.openjpa/openjpa-all
/**
* Construct.
*
* @param id an identifier for this query to be used as cache key
* @param corresponding data store language query string
* @param compiled a compiled query
*/
public PreparedQueryImpl(String id, String sql, Query compiled) {
this._id = id;
this._sql = sql;
if (compiled != null) {
_candidate = compiled.getCandidateType();
_subclasses = compiled.hasSubclasses();
}
}
代码示例来源:origin: org.apache.openejb.patch/openjpa-jdbc
/**
* Construct.
*
* @param id an identifier for this query to be used as cache key
* @param corresponding data store language query string
* @param compiled a compiled query
*/
public PreparedQueryImpl(String id, String sql, Query compiled) {
this._id = id;
this._sql = sql;
if (compiled != null) {
_candidate = compiled.getCandidateType();
_subclasses = compiled.hasSubclasses();
}
}
代码示例来源:origin: org.apache.openejb.patch/openjpa
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Object[] args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Map<Object,Object> args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openejb.patch/openjpa
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Map<Object,Object> args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openjpa/openjpa-kernel
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Map<Object,Object> args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Map args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange());
}
代码示例来源:origin: org.apache.openjpa/openjpa-all
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Object[] args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openjpa/openjpa-all
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Map<Object,Object> args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openjpa/openjpa-kernel
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Object[] args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Object[] args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange(), null);
}
代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa
/**
* Return a key for the given query, or null if it is not cacheable.
*/
public static QueryKey newInstance(Query q, Object[] args) {
// compile to make sure info encoded in query string is available
// via API calls (candidate class, result class, etc)
q.compile();
return newInstance(q, false, args, q.getCandidateType(),
q.hasSubclasses(), q.getStartRange(), q.getEndRange());
}
内容来源于网络,如有侵权,请联系作者删除!