FacetResultValue クラス
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
クラス FacetResultValue
は検索結果の一部としてのファセット値を表します。
FacetResultValue
は、google.appengine.api.search
モジュールで定義されます。
コンストラクタ
FacetResultValue
クラスのコンストラクタは、次のように定義されます。
class FacetResultValue(label, count, refinement)
クラス FacetRefinement
のインスタンスを作成します。
引数
- label
- label プロパティを設定します。
- count
- count プロパティを設定します。
- refinement
- refinement プロパティを設定します。
結果値
FacetResultValue
クラスの新しいインスタンス。
例外
- TypeError
いずれかのパラメータが無効なタイプであるか、不明な属性が渡された場合。
- ValueError
いずれかのパラメータに無効な値がある場合
プロパティ
FacetResultValue
クラスのインスタンスには次のプロパティがあります。
- label
このファセット値のラベル。アトム ファセットの場合、ラベルはファセットの文字列値になります。ファセット値が数値の場合、この文字列は値の範囲を表します。
- count
この FacetResultValue に一致する文書の数(現在のクエリの結果での文書数)。
- refinement_token
この FacetResultValue の FacetRefinement オブジェクト。このオブジェクトまたは文字列トークンを次のクエリに渡すと、このファセット値に基づいて結果を絞り込むことができます。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-03-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-03-26 UTC。"],[[["`FacetResultValue` represents a facet value within search results and is part of the `google.appengine.api.search` module, supported for first-generation runtimes."],["The `FacetResultValue` constructor takes label, count, and refinement as arguments to create a new instance, raising `TypeError` or `ValueError` for invalid inputs."],["The `label` property of `FacetResultValue` represents the string value for atom facets or a string range for numeric facets."],["The `count` property indicates how many documents match the `FacetResultValue` in the current query results."],["The `refinement_token` property provides a `FacetRefinement` object to further refine future search queries based on the selected facet value."]]],[]]