com.liferay.portal.kernel.dao.orm.Query类的使用及代码示例

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

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

Query介绍

[英][View Source](https://www.tabnine.com/code/java/classes/com.liferay.portal.kernel.dao.orm.Query#)
[中][View Source](https://www.tabnine.com/code/java/classes/com.liferay.portal.kernel.dao.orm.Query#)

代码示例

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. return query.list(unmodifiable);
  2. query.setMaxResults(end - start);
  3. query.setFirstResult(start);
  4. return query.list(unmodifiable);
  5. ScrollableResults sr = query.scroll();

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(boolean value) {
  2. _query.setBoolean(_pos++, value);
  3. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(double value) {
  2. _query.setDouble(_pos++, value);
  3. }

代码示例来源:origin: com.liferay/com.liferay.dynamic.data.mapping.service

  1. q.setFirstResult(0);
  2. q.setMaxResults(2);
  3. List<DDMStructure> list = q.list();

代码示例来源:origin: liferay/liferay-ide

  1. for (Club club : (List<Club>)q.list()) {
  2. map.put(club.getPrimaryKeyObj(), club);

代码示例来源:origin: com.liferay/com.liferay.dynamic.data.mapping.service

  1. /**
  2. * Returns the number of ddm structure links.
  3. *
  4. * @return the number of ddm structure links
  5. */
  6. @Override
  7. public int countAll() {
  8. Long count = (Long)finderCache.getResult(_finderPathCountAll,
  9. FINDER_ARGS_EMPTY, this);
  10. if (count == null) {
  11. Session session = null;
  12. try {
  13. session = openSession();
  14. Query q = session.createQuery(_SQL_COUNT_DDMSTRUCTURELINK);
  15. count = (Long)q.uniqueResult();
  16. finderCache.putResult(_finderPathCountAll, FINDER_ARGS_EMPTY,
  17. count);
  18. }
  19. catch (Exception e) {
  20. finderCache.removeResult(_finderPathCountAll, FINDER_ARGS_EMPTY);
  21. throw processException(e);
  22. }
  23. finally {
  24. closeSession(session);
  25. }
  26. }
  27. return count.intValue();
  28. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(float value) {
  2. _query.setFloat(_pos++, value);
  3. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(int value) {
  2. _query.setInteger(_pos++, value);
  3. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(long value) {
  2. _query.setLong(_pos++, value);
  3. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. ScrollableResults sr = query.scroll();

代码示例来源:origin: com.liferay/com.liferay.journal.service

  1. q.setFirstResult(0);
  2. q.setMaxResults(2);
  3. List<JournalArticle> list = q.list();

代码示例来源:origin: liferay/liferay-ide

  1. for (RosterMember rosterMember : (List<RosterMember>)q.list()) {
  2. map.put(rosterMember.getPrimaryKeyObj(), rosterMember);

代码示例来源:origin: com.liferay/com.liferay.journal.service

  1. /**
  2. * Returns the number of journal folders.
  3. *
  4. * @return the number of journal folders
  5. */
  6. @Override
  7. public int countAll() {
  8. Long count = (Long)finderCache.getResult(_finderPathCountAll,
  9. FINDER_ARGS_EMPTY, this);
  10. if (count == null) {
  11. Session session = null;
  12. try {
  13. session = openSession();
  14. Query q = session.createQuery(_SQL_COUNT_JOURNALFOLDER);
  15. count = (Long)q.uniqueResult();
  16. finderCache.putResult(_finderPathCountAll, FINDER_ARGS_EMPTY,
  17. count);
  18. }
  19. catch (Exception e) {
  20. finderCache.removeResult(_finderPathCountAll, FINDER_ARGS_EMPTY);
  21. throw processException(e);
  22. }
  23. finally {
  24. closeSession(session);
  25. }
  26. }
  27. return count.intValue();
  28. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(Float value) {
  2. if (value != null) {
  3. _query.setFloat(_pos++, value.intValue());
  4. }
  5. else {
  6. _addNull();
  7. }
  8. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(Integer value) {
  2. if (value != null) {
  3. _query.setInteger(_pos++, value.intValue());
  4. }
  5. else {
  6. _addNull();
  7. }
  8. }

代码示例来源:origin: com.liferay.portal/com.liferay.portal.kernel

  1. public void add(Long value) {
  2. if (value != null) {
  3. _query.setLong(_pos++, value.longValue());
  4. }
  5. else {
  6. _addNull();
  7. }
  8. }

代码示例来源:origin: com.liferay.portal/portal-kernel

  1. public static List<?> randomList(
  2. Query query, Dialect dialect, int total, int num,
  3. boolean unmodifiable) {
  4. if ((total == 0) || (num == 0)) {
  5. return new ArrayList<Object>();
  6. }
  7. if (num >= total) {
  8. return list(query, dialect, ALL_POS, ALL_POS, true);
  9. }
  10. int[] scrollIds = Randomizer.getInstance().nextInt(total, num);
  11. List<Object> list = new ArrayList<Object>();
  12. ScrollableResults sr = query.scroll();
  13. for (int i = 0; i < scrollIds.length; i++) {
  14. if (sr.scroll(scrollIds[i])) {
  15. Object obj = sr.get(0);
  16. list.add(obj);
  17. sr.first();
  18. }
  19. }
  20. if (unmodifiable) {
  21. return new UnmodifiableList(list);
  22. }
  23. else {
  24. return list;
  25. }
  26. }

代码示例来源:origin: com.liferay/com.liferay.journal.service

  1. q.setFirstResult(0);
  2. q.setMaxResults(2);
  3. List<JournalArticle> list = q.list();

代码示例来源:origin: com.liferay/com.liferay.dynamic.data.mapping.service

  1. for (DDMFormInstance ddmFormInstance : (List<DDMFormInstance>)q.list()) {
  2. map.put(ddmFormInstance.getPrimaryKeyObj(), ddmFormInstance);

代码示例来源:origin: com.liferay.portal/portal-kernel

  1. return query.list(unmodifiable);
  2. query.setMaxResults(end - start);
  3. query.setFirstResult(start);
  4. return query.list(unmodifiable);
  5. ScrollableResults sr = query.scroll();

相关文章