org.apache.openjpa.kernel.Query.setCandidateType()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(159)

本文整理了Java中org.apache.openjpa.kernel.Query.setCandidateType方法的一些代码示例,展示了Query.setCandidateType的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setCandidateType方法的具体详情如下:
包路径:org.apache.openjpa.kernel.Query
类名称:Query
方法名:setCandidateType

Query.setCandidateType介绍

暂无

代码示例

代码示例来源:origin: org.apache.openjpa/openjpa-all

public void setCandidateType(Class cls, boolean subs) {
  try {
    _query.setCandidateType(cls, subs);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openjpa/openjpa-kernel

public void setCandidateType(Class cls, boolean subs) {
  try {
    _query.setCandidateType(cls, subs);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openjpa/openjpa-all

public Query newQuery(String lang, Class cls, Object query) {
  Query q = newQuery(lang, query);
  q.setCandidateType(cls, true);
  return q;
}

代码示例来源:origin: org.apache.openjpa/openjpa-jdbc

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa

public void setCandidateType(Class cls, boolean subs) {
  try {
    _query.setCandidateType(cls, subs);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-jdbc

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

代码示例来源:origin: org.apache.openjpa/openjpa-all

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa

public Query newQuery(String lang, Class cls, Object query) {
  Query q = newQuery(lang, query);
  q.setCandidateType(cls, true);
  return q;
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

public Query newQuery(String lang, Class cls, Object query) {
  Query q = newQuery(lang, query);
  q.setCandidateType(cls, true);
  return q;
}

代码示例来源:origin: org.apache.openjpa/openjpa-kernel

public Query newQuery(String lang, Class cls, Object query) {
  Query q = newQuery(lang, query);
  q.setCandidateType(cls, true);
  return q;
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel

public void setCandidateType(Class cls, boolean subs) {
  try {
    _query.setCandidateType(cls, subs);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel

public Query newQuery(String lang, Class cls, Object query) {
  Query q = newQuery(lang, query);
  q.setCandidateType(cls, true);
  return q;
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

public void setCandidateType(Class cls, boolean subs) {
  try {
    _query.setCandidateType(cls, subs);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtils.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtils.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtils.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

代码示例来源:origin: org.apache.openjpa/openjpa-all

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtil.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

代码示例来源:origin: org.apache.openjpa/openjpa-kernel

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtil.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

相关文章