com.psddev.dari.db.Query.count()方法的使用及代码示例

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

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

Query.count介绍

[英]Returns a count of all objects matching this query in a #getDatabase.
[中]返回#getDatabase中与此查询匹配的所有对象的计数。

代码示例

代码示例来源:origin: perfectsense/brightspot-cms

  1. /**
  2. * Calculates the size of the SearchResultSelection by counting its items {@link Query}.
  3. * @return the size of the SearchResultSelection.
  4. */
  5. public int size() {
  6. return Long.valueOf(createItemsQuery().count()).intValue();
  7. }

代码示例来源:origin: perfectsense/dari

  1. private Long getCountFor(int index) {
  2. Query<? extends E> query = getQueryFor(index);
  3. if (query == null) {
  4. return null;
  5. } else {
  6. Long count = counts.get(query);
  7. if (count == null) {
  8. count = query.count();
  9. counts.put(query, count);
  10. }
  11. return count;
  12. }
  13. }

代码示例来源:origin: perfectsense/dari

  1. private long readCount(Database database, WebPageContext context) {
  2. return createQuery(database, context).count();
  3. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. /** Returns the number of items completed. */
  2. public long countComplete() {
  3. return Query.fromAll()
  4. .where("cms.workstream.completeIds ^= ?", getId().toString() + ",")
  5. .count();
  6. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. @Override
  2. public String getLabel() {
  3. String name = getName();
  4. StringBuilder label = new StringBuilder();
  5. if (ObjectUtils.isBlank(name)) {
  6. Date triggerDate = getTriggerDate();
  7. label.append(triggerDate != null
  8. ? triggerDate.toString()
  9. : getId().toString());
  10. } else {
  11. label.append(name);
  12. }
  13. long draftCount = Query
  14. .from(Draft.class)
  15. .where("schedule = ?", this)
  16. .count();
  17. if (draftCount > 1) {
  18. label.append(" (");
  19. label.append(draftCount);
  20. label.append(" items)");
  21. }
  22. return label.toString();
  23. }
  24. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. /**
  2. * Returns the number of items completed by the given {@code user}.
  3. *
  4. * @param user Can't be {@code null}.
  5. */
  6. public long countComplete(ToolUser user) {
  7. ErrorUtils.errorIfNull(user, "user");
  8. return Query
  9. .from(Object.class)
  10. .where("cms.workstream.completeIds = ?", getId().toString() + "," + user.getId().toString())
  11. .count();
  12. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. private long getReferencesCount(Object item) {
  2. return Query
  3. .fromAll()
  4. .where("* matches ?", State.getInstance(item).getId())
  5. .count();
  6. }
  7. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. /** Returns the number of remaining items to be worked on. */
  2. public long countIncomplete() {
  3. return getQuery().clone()
  4. .and("id != ?", Query.from(Object.class).where("cms.workstream.completeIds ^= ?", getId().toString() + ","))
  5. .count();
  6. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. private long getAvailableActionCount(boolean archive) {
  2. if (getSelection() != null) {
  3. return itemsQuery().noCache().selectAll().stream().filter(i -> isItemActionable(i, archive)).count();
  4. } else if (getSearch() != null) {
  5. return isSearchActionable(getSearch(), archive) ? getSearch().toQuery(getSite()).count() : 0;
  6. }
  7. return 0;
  8. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. long stateCount = Query.fromQuery(query).where("cms.workflow.currentState = ?", workflowState.getName()).noCache().count();

代码示例来源:origin: perfectsense/dari

  1. try {
  2. if (concreteTypeIds.isEmpty()) {
  3. count = Query.fromAll().using(database).noCache().count();
  4. } else {
  5. for (UUID concreteTypeId : concreteTypeIds) {
  6. long concreteCount = Query.fromAll().using(database).noCache().where("_type = ?", concreteTypeId).count();
  7. count = count + concreteCount;
  8. long objectCount = Query.fromAll().using(database).noCache().where("_type = ?", objType).count();
  9. count = count + objectCount;
  10. long typeMapCount = Query.fromAll().using(database).noCache().where("_type = ?", typeMapType).count();
  11. count = count + typeMapCount;

代码示例来源:origin: perfectsense/dari

  1. private void renderCount() throws IOException {
  2. try {
  3. if (query.getTimeout() == null) {
  4. query.setTimeout(1.0);
  5. }
  6. writeObject(query.count());
  7. } catch (RuntimeException ex) {
  8. writeHtml("Many (");
  9. writeStart("a", "href", page.url("", "timeout", 0));
  10. writeHtml("Force Count");
  11. writeEnd();
  12. writeHtml(")");
  13. }
  14. }

代码示例来源:origin: perfectsense/brightspot-cms

  1. long count = query.count();
  2. ObjectType type = ObjectType.getInstance(page.param(UUID.class, "typeId"));
  3. State state = State.getInstance(type.createObject(page.param(UUID.class, "id")));

代码示例来源:origin: perfectsense/brightspot-cms

  1. count = query.count();

相关文章