All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.cloud.cloudant.v1.model.SearchResult Maven / Gradle / Ivy

There is a newer version: 0.9.2
Show newest version
/*
 * (C) Copyright IBM Corp. 2023.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.ibm.cloud.cloudant.v1.model;

import java.util.List;
import java.util.Map;

import com.google.gson.annotations.SerializedName;
import com.ibm.cloud.sdk.core.service.model.GenericModel;

/**
 * Schema for the result of a query search operation.
 */
public class SearchResult extends GenericModel {

  @SerializedName("total_rows")
  protected Long totalRows;
  protected String bookmark;
  protected String by;
  protected Map> counts;
  protected Map> ranges;
  protected List rows;
  protected List groups;

  protected SearchResult() { }

  /**
   * Gets the totalRows.
   *
   * Number of total rows.
   *
   * @return the totalRows
   */
  public Long getTotalRows() {
    return totalRows;
  }

  /**
   * Gets the bookmark.
   *
   * Opaque bookmark token used when paginating results.
   *
   * @return the bookmark
   */
  public String getBookmark() {
    return bookmark;
  }

  /**
   * Gets the by.
   *
   * Grouped search matches.
   *
   * @return the by
   */
  public String getBy() {
    return by;
  }

  /**
   * Gets the counts.
   *
   * The counts facet syntax returns the number of query results for each unique value of each named field.
   *
   * @return the counts
   */
  public Map> getCounts() {
    return counts;
  }

  /**
   * Gets the ranges.
   *
   * The range facet syntax reuses the standard Lucene syntax for ranges to return counts of results that fit into each
   * specified category.
   *
   * @return the ranges
   */
  public Map> getRanges() {
    return ranges;
  }

  /**
   * Gets the rows.
   *
   * Array of row objects.
   *
   * @return the rows
   */
  public List getRows() {
    return rows;
  }

  /**
   * Gets the groups.
   *
   * Array of grouped search matches.
   *
   * @return the groups
   */
  public List getGroups() {
    return groups;
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy