makit/SortOrder.ENUM.js

1       /* ----------------------------------------------------------------------------------
2        * Hint: This is a derived (generated) file. Changes should be done in the underlying 
3        * source files only (*.type, *.js) or they will be lost after the next generation.
4        * ---------------------------------------------------------------------------------- */
5       
6       // Provides enumeration sap.apb.makit.SortOrder.
7       jQuery.sap.declare("sap.apb.makit.SortOrder");
8       
9       /**
10       * @class Enumeration for sort order.
11       *
12       * @version 1.0
13       * @static
14       * @public
15       */
16      sap.apb.makit.SortOrder = {
17        
18          /**
19           * Ascending sort 
20           * @public
21           */
22          Ascending : "Ascending",
23      
24          /**
25           * Descending sort 
26           * @public
27           */
28          Descending : "Descending",
29      
30          /**
31           * No sorting 
32           * @public
33           */
34          None : "None"
35      
36        };
37        
38