Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
Sort.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef SORT_H
8#define SORT_H
9
10#include "LuceneObject.h"
11
12namespace Lucene {
13
68class LPPAPI Sort : public LuceneObject {
69public:
74
76 Sort(const SortFieldPtr& field);
77
80
81 virtual ~Sort();
82
84
85public:
88
89public:
94
97
99 void setSort(const SortFieldPtr& field);
100
103
107
108 virtual String toString();
109 virtual bool equals(const LuceneObjectPtr& other);
110 virtual int32_t hashCode();
111};
112
113}
114
115#endif
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Utility template class to handle collections that can be safely copied and shared.
Definition Collection.h:17
Base class for all Lucene classes.
Definition LuceneObject.h:31
Encapsulates sort criteria for returned hits.
Definition Sort.h:68
virtual bool equals(const LuceneObjectPtr &other)
Return whether two objects are equal.
static SortPtr INDEXORDER()
Represents sorting by index order.
virtual String toString()
Returns a string representation of the object.
Sort(Collection< SortFieldPtr > fields)
Sorts in succession by the criteria in each SortField.
Sort()
Sorts by computed relevance. This is the same sort criteria as calling Searcher#search() without a so...
Collection< SortFieldPtr > fields
Internal representation of the sort criteria.
Definition Sort.h:87
virtual ~Sort()
void setSort(const SortFieldPtr &field)
Sets the sort to the given criteria.
Collection< SortFieldPtr > getSort()
Representation of the sort criteria.
static SortPtr RELEVANCE()
Represents sorting by computed relevance. Using this sort criteria returns the same results as callin...
virtual int32_t hashCode()
Return hash code for this object.
void setSort(Collection< SortFieldPtr > fields)
Sets the sort to the given criteria in succession.
Sort(const SortFieldPtr &field)
Sorts by the criteria in the given SortField.
Definition AbstractAllTermDocs.h:12
boost::shared_ptr< LuceneObject > LuceneObjectPtr
Definition LuceneTypes.h:539
boost::shared_ptr< SortField > SortFieldPtr
Definition LuceneTypes.h:443
boost::shared_ptr< Sort > SortPtr
Definition LuceneTypes.h:442

clucene.sourceforge.net