UNPKG

@openui5/sap.ui.core

Version:

OpenUI5 Core Library sap.ui.core

40 lines (33 loc) 896 B
/*! * OpenUI5 * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides enumeration sap.ui.model.odata.v2.BatchMode sap.ui.define(function() { "use strict"; /** * Different modes for retrieving the count of collections. * * @enum {string} * @public * @alias sap.ui.model.odata.v2.BatchMode * @deprecated since 1.74.0; Use {@link sap.ui.model.odata.CountMode} to specify how the count of collections is retrieved. Use the <code>useBatch</code> parameter of the * {@link sap.ui.model.odata.v2.ODataModel} constructor to specify whether requests are sent in * $batch. */ var BatchMode = { /** * No batch requests * @public */ None: "None", /** * Batch grouping enabled * @public */ Group: "Group" }; return BatchMode; }, /* bExport= */ true);