com.liferay.portal.kernel.search.Hits Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.kernel.search;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* @author Brian Wing Shun Chan
*/
public interface Hits extends Serializable {
public void addGroupedHits(String groupValue, Hits hits);
public void addStatsResults(StatsResults statsResults);
public void copy(Hits hits);
public Document doc(int n);
public String getCollatedSpellCheckResult();
public Document[] getDocs();
public Map getGroupedHits();
public int getLength();
public Query getQuery();
public String[] getQuerySuggestions();
public String[] getQueryTerms();
public float[] getScores();
public float getSearchTime();
public String[] getSnippets();
public Map> getSpellCheckResults();
public long getStart();
public Map getStatsResults();
public boolean hasGroupedHits();
public float score(int n);
public void setCollatedSpellCheckResult(String collatedSpellCheckResult);
public void setDocs(Document[] docs);
public void setLength(int length);
public void setQuery(Query query);
public void setQuerySuggestions(String[] querySuggestions);
public void setQueryTerms(String[] queryTerms);
public void setScores(float[] scores);
public void setSearchTime(float time);
public void setSnippets(String[] snippets);
public void setSpellCheckResults(
Map> spellCheckResults);
public void setStart(long start);
public String snippet(int n);
public List toList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy