Metadata passed with search requests.
More...
#include <unity/scopes/SearchMetadata.h>
Metadata passed with search requests.
unity::scopes::SearchMetadata::SearchMetadata |
( |
std::string const & |
locale, |
|
|
std::string const & |
form_factor |
|
) |
| |
Create SearchMetadata with given locale and form factor.
- Parameters
-
locale | locale string, eg. en_EN |
form_factor | form factor name, e.g. phone, desktop, phone-version etc. |
unity::scopes::SearchMetadata::SearchMetadata |
( |
int |
cardinality, |
|
|
std::string const & |
locale, |
|
|
std::string const & |
form_factor |
|
) |
| |
Create SearchMetadata with given cardinality, locale and form factor.
- Parameters
-
cardinality | maximum number of search results |
locale | locale string, eg. en_EN |
form_factor | form factor name, e.g. phone, desktop, phone-version etc. |
int unity::scopes::SearchMetadata::cardinality |
( |
| ) |
const |
Get cardinality.
- Returns
- The maxmium number of search results, or 0 for no limit.
bool unity::scopes::SearchMetadata::contains_hint |
( |
std::string const & |
key | ) |
const |
Check if this SearchMetadata has a hint.
- Parameters
-
- Returns
- True if the hint is set.
std::string unity::scopes::SearchMetadata::form_factor |
( |
| ) |
const |
Get the form factor string.
- Returns
- The form factor string
VariantMap unity::scopes::SearchMetadata::hints |
( |
| ) |
const |
Get all hints.
- Returns
- Hints dictionary.
std::string unity::scopes::SearchMetadata::locale |
( |
| ) |
const |
Get the locale string.
- Returns
- The locale string
Variant & unity::scopes::SearchMetadata::operator[] |
( |
std::string const & |
key | ) |
|
Returns a reference to a hint.
This method can be used to read or set hints. Setting a value of an existing hint overwrites its previous value. Referencing a non-existing hint automatically creates it with a default value of Variant::Type::Null.
- Parameters
-
- Returns
- A reference to the hint.
Variant const & unity::scopes::SearchMetadata::operator[] |
( |
std::string const & |
key | ) |
const |
Returns a const reference to a hint.
This method can be used for read-only access to hints. Referencing a non-existing hint throws unity::InvalidArgumentException.
- Parameters
-
- Returns
- A const reference to the hint.
- Exceptions
-
unity::LogicException | if no hint with the given name exists. |
void unity::scopes::SearchMetadata::set_cardinality |
( |
int |
cardinality | ) |
|
Set cardinality.
- Parameters
-
cardinality | The maximum number of search results. |
void unity::scopes::SearchMetadata::set_hint |
( |
std::string const & |
key, |
|
|
Variant const & |
value |
|
) |
| |
Sets a hint.
- Parameters
-
key | The name of the hint. |
value | Hint value |
The documentation for this class was generated from the following files: