Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
Enum AggregationType
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
AggregationType
एक Enum, जो उन एग्रीगेशन टाइप के बारे में बताता है जिन्हें Field के लिए सेट किया जा सकता है.
किसी Enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होता है. उदाहरण के लिए,
DataStudioApp.AggregationType.AVG.
प्रॉपर्टी
| प्रॉपर्टी | Type | ब्यौरा |
AVG | Enum | औसतन. |
COUNT | Enum | गिनती. |
COUNT_DISTINCT | Enum | अलग-अलग गिनती. |
MAX | Enum | ज़्यादा से ज़्यादा |
MIN | Enum | बुनियादी |
SUM | Enum | कुल योग. |
AUTO | Enum | ऑटो. आपके दिए गए फ़ॉर्मूला के आधार पर तैयार किए गए उन फ़ील्ड के लिए, 'अपने-आप' का इस्तेमाल करें जो एग्रीगेट किए गए फ़ील्ड का रेफ़रंस देते हैं. |
ऐसी प्रॉपर्टी जिनके इस्तेमाल पर रोक लगा दी गई है
| प्रॉपर्टी | Type | ब्यौरा |
NO_AGGREGATION | Enum | रोका गया: इसके बजाय AUTO का इस्तेमाल करें. कोई एग्रीगेशन नहीं. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2026-04-13 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2026-04-13 (UTC) को अपडेट किया गया."],[],["`AggregationType` is an enum defining aggregation options for a `Field`. It includes properties like `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MIN`, `SUM`, and `AUTO`. These represent the types of calculations that can be applied to a field's data. `AUTO` is used for calculated fields that reference aggregated data. The `NO_AGGREGATION` property is deprecated and `AUTO` should be used instead. Each enum can be called by its parent class, name, and property.\n"]]