LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
global class Database {
    /**
     * Convert a lead, creating or modifying other records
     */
    global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Database.DMLOptions DmlOptions, System.AccessLevel accessLevel) { }
    /**
     * Convert a lead, creating or modifying other records, optionally choosing to leave any successes in the current transaction
     */
    global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Convert leads, creating or modifying other records
     */
    global static List<Database.LeadConvertResult> convertLead(List<Database.LeadConvert> leadConverts, Database.DMLOptions DmlOptions, System.AccessLevel accessLevel) { }
    /**
     * Convert leads, creating or modifying other records, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.LeadConvertResult> convertLead(List<Database.LeadConvert> leadConverts, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Convert a lead, creating or modifying other records
     */
    global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Database.DMLOptions DmlOptions) { }
    /**
     * Convert a lead, creating or modifying other records
     */
    global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, System.AccessLevel accessLevel) { }
    /**
     * Convert a lead, creating or modifying other records, optionally choosing to leave any successes in the current transaction
     */
    global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Boolean allOrNothing) { }
    /**
     * Convert leads, creating or modifying other records
     */
    global static List<Database.LeadConvertResult> convertLead(List<Database.LeadConvert> leadConverts, Database.DMLOptions DmlOptions) { }
    /**
     * Convert leads, creating or modifying other records
     */
    global static List<Database.LeadConvertResult> convertLead(List<Database.LeadConvert> leadConverts, System.AccessLevel accessLevel) { }
    /**
     * Convert leads, creating or modifying other records, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.LeadConvertResult> convertLead(List<Database.LeadConvert> leadConverts, Boolean allOrNothing) { }
    /**
     * Convert a lead, creating or modifying other records
     */
    global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert) { }
    /**
     * Convert leads, creating or modifying other records
     */
    global static List<Database.LeadConvertResult> convertLead(List<Database.LeadConvert> leadConverts) { }
    /**
     * dynamic count query result
     */
    global static Integer countQuery(String queries, System.AccessLevel accessLevel) { }
    /**
     * dynamic count query result
     */
    global static Integer countQuery(String queries) { }
    /**
     * Dynamic count query result with BindMap
     */
    global static List<SObject> countQueryWithBinds(String queries, Map<String, Object> bindMap, System.AccessLevel accessLevel) { }
    /**
     * delete an object, returning the api delete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.DeleteResult delete(Id id, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * delete a set of objects, returning the api delete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.DeleteResult> delete(List<Id> ids, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * delete a set of objects, returning the api delete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.DeleteResult> delete(List<SObject> sobjects, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * delete an object, returning the api delete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.DeleteResult delete(SObject sobject, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * delete an object, returning the api delete results
     */
    global static Database.DeleteResult delete(Id id, System.AccessLevel accessLevel) { }
    /**
     * delete an object, returning the api delete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.DeleteResult delete(Id id, Boolean allOrNothing) { }
    /**
     * delete a set of objects, returning the api delete results including failures
     */
    global static List<Database.DeleteResult> delete(List<Id> ids, System.AccessLevel accessLevel) { }
    /**
     * delete a set of objects, returning the api delete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.DeleteResult> delete(List<Id> ids, Boolean allOrNothing) { }
    /**
     * delete a set of objects, returning the api delete results including failures
     */
    global static List<Database.DeleteResult> delete(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * delete a set of objects, returning the api delete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.DeleteResult> delete(List<SObject> sobjects, Boolean allOrNothing) { }
    /**
     * delete an object, returning the api delete results
     */
    global static Database.DeleteResult delete(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * delete an object, returning the api delete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.DeleteResult delete(SObject sobject, Boolean allOrNothing) { }
    /**
     * delete an object, returning the api delete results
     */
    global static Database.DeleteResult delete(Id id) { }
    /**
     * delete a set of objects, returning the api delete results including failures
     */
    global static List<Database.DeleteResult> delete(List<Id> ids) { }
    /**
     * delete a set of objects, returning the api delete results including failures
     */
    global static List<Database.DeleteResult> delete(List<SObject> sobjects) { }
    /**
     * delete an object, returning the api delete results
     */
    global static Database.DeleteResult delete(SObject sobject) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static List<Database.DeleteResult> deleteAsync(List<SObject> sobjects, Object callback, System.AccessLevel accessLevel) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static Database.DeleteResult deleteAsync(SObject sobject, Object callback, System.AccessLevel accessLevel) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static List<Database.DeleteResult> deleteAsync(List<SObject> sobjects, Object callback) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static List<Database.DeleteResult> deleteAsync(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static Database.DeleteResult deleteAsync(SObject sobject, Object callback) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static Database.DeleteResult deleteAsync(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static List<Database.DeleteResult> deleteAsync(List<SObject> sobjects) { }
    /**
     * Initiate an asynchronous delete of an object, returning asyncLocator in the api delete results
     */
    global static Database.DeleteResult deleteAsync(SObject sobject) { }
    /**
     * Immediately delete a set of virtual object, returning the api delete results
     */
    global static List<Database.DeleteResult> deleteImmediate(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Immediately delete a virtual object, returning the api delete results
     */
    global static Database.DeleteResult deleteImmediate(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Immediately delete a set of virtual object, returning the api delete results
     */
    global static List<Database.DeleteResult> deleteImmediate(List<SObject> sobjects) { }
    /**
     * Immediately delete a virtual object, returning the api delete results
     */
    global static Database.DeleteResult deleteImmediate(SObject sobject) { }
    global static List<Database.EmptyRecycleBinResult> emptyRecycleBin(List<Id> ids) { }
    global static List<Database.EmptyRecycleBinResult> emptyRecycleBin(List<SObject> sobjects) { }
    global static Database.EmptyRecycleBinResult emptyRecycleBin(SObject sobject) { }
    /**
     * execute a batch job
     */
    global static String executeBatch(Object batchable, Integer batchSize) { }
    /**
     * execute a batch job
     */
    global static String executeBatch(Object batchable) { }
    /**
     * retrieve status of asynchronous delete identified by the DeleteResult object
     */
    global static Database.DeleteResult getAsyncDeleteResult(Object deleteResult) { }
    /**
     * retrieve status of asynchronous delete identified by async locator
     */
    global static Database.DeleteResult getAsyncDeleteResult(String asyncLocator) { }
    /**
     * retrieve async locator from a save or delete result
     */
    global static String getAsyncLocator(Object result) { }
    /**
     * retrieve status of asynchronous save identified by the SaveResult object
     */
    global static Database.SaveResult getAsyncSaveResult(Object saveResult) { }
    /**
     * retrieve status of asynchronous save identified by async locator
     */
    global static Database.SaveResult getAsyncSaveResult(String asyncLocator) { }
    /**
     * Retrieves the list of individual records that have been deleted within the given timespan for the specified SObject type.
     */
    global static Database.GetDeletedResult getDeleted(String sobjectType, Datetime startDate, Datetime endDate) { }
    /**
     * create a query locator for batch Apex
     */
    global static Database.QueryLocator getQueryLocator(List<SObject> queries, System.AccessLevel accessLevel) { }
    /**
     * create a query locator for batch Apex
     */
    global static Database.QueryLocator getQueryLocator(String queries, System.AccessLevel accessLevel) { }
    /**
     * create a query locator for batch Apex
     */
    global static Database.QueryLocator getQueryLocator(List<SObject> queries) { }
    /**
     * create a query locator for batch Apex
     */
    global static Database.QueryLocator getQueryLocator(String queries) { }
    /**
     * create a query locator for batch Apex with BindMap
     */
    global static Database.QueryLocator getQueryLocatorWithBinds(String queries, Map<String, Object> bindMap, System.AccessLevel accessLevel) { }
    /**
     * Retrieves the list of individual records that have been updated within the given timespan for the specified SObject type.
     */
    global static Database.GetUpdatedResult getUpdated(String sobjectType, Datetime startDate, Datetime endDate) { }
    /**
     * Insert a set of objects, returning the api save results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.SaveResult> insert(List<SObject> sobjects, Database.DMLOptions DmlOptions, System.AccessLevel accessLevel) { }
    /**
     * Insert a set of objects, returning the api save results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.SaveResult> insert(List<SObject> sobjects, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Insert an object, returning the api save results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.SaveResult insert(SObject sobject, Database.DMLOptions DmlOptions, System.AccessLevel accessLevel) { }
    /**
     * Insert an object, returning the api save results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.SaveResult insert(SObject sobject, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Insert a set of objects, returning the api save results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.SaveResult> insert(List<SObject> sobjects, Database.DMLOptions DmlOptions) { }
    /**
     * Insert a set of objects, returning the api save results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.SaveResult> insert(List<SObject> sobjects, Boolean allOrNothing) { }
    /**
     * Insert an object, returning the api save results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.SaveResult insert(SObject sobject, Database.DMLOptions DmlOptions) { }
    /**
     * Insert an object, returning the api save results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.SaveResult insert(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Insert an object, returning the api save results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.SaveResult insert(SObject sobject, Boolean allOrNothing) { }
    /**
     * Insert a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> insert(List<SObject> sobjects) { }
    /**
     * Insert an object, returning the api save results
     */
    global static Database.SaveResult insert(SObject sobject) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> insertAsync(List<SObject> sobjects, Object callback, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult insertAsync(SObject sobject, Object callback, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> insertAsync(List<SObject> sobjects, Object callback) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> insertAsync(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult insertAsync(SObject sobject, Object callback) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult insertAsync(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> insertAsync(List<SObject> sobjects) { }
    /**
     * Initiate asynchronous insert of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult insertAsync(SObject sobject) { }
    /**
     * Immediately insert a set of virtual objects, returning the api save results
     */
    global static List<Database.SaveResult> insertImmediate(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Immediately insert a virtual object, returning the api save results
     */
    global static Database.SaveResult insertImmediate(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Immediately insert a set of virtual objects, returning the api save results
     */
    global static List<Database.SaveResult> insertImmediate(List<SObject> sobjects) { }
    /**
     * Immediately insert a virtual object, returning the api save results
     */
    global static Database.SaveResult insertImmediate(SObject sobject) { }
    global static Database.MergeResult merge(SObject primary, Id duplicate, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    global static List<Database.MergeResult> merge(SObject primary, List<Id> duplicates, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    global static List<Database.MergeResult> merge(SObject primary, List<SObject> duplicates, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    global static Database.MergeResult merge(SObject primary, SObject duplicate, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    global static Database.MergeResult merge(SObject primary, Id duplicate, System.AccessLevel accessLevel) { }
    global static Database.MergeResult merge(SObject primary, Id duplicate, Boolean allOrNothing) { }
    global static List<Database.MergeResult> merge(SObject primary, List<Id> duplicates, System.AccessLevel accessLevel) { }
    global static List<Database.MergeResult> merge(SObject primary, List<Id> duplicates, Boolean allOrNothing) { }
    global static List<Database.MergeResult> merge(SObject primary, List<SObject> duplicates, System.AccessLevel accessLevel) { }
    global static List<Database.MergeResult> merge(SObject primary, List<SObject> duplicates, Boolean allOrNothing) { }
    global static Database.MergeResult merge(SObject primary, SObject duplicate, System.AccessLevel accessLevel) { }
    global static Database.MergeResult merge(SObject primary, SObject duplicate, Boolean allOrNothing) { }
    global static Database.MergeResult merge(SObject primary, Id duplicate) { }
    global static List<Database.MergeResult> merge(SObject primary, List<Id> duplicates) { }
    global static List<Database.MergeResult> merge(SObject primary, List<SObject> duplicates) { }
    global static Database.MergeResult merge(SObject primary, SObject duplicate) { }
    /**
     * dynamic SOQL query result
     */
    global static List<SObject> query(String queries, System.AccessLevel accessLevel) { }
    /**
     * dynamic SOQL query result
     */
    global static List<SObject> query(String queries) { }
    /**
     * Dynamic SOQL query result with BindMap
     */
    global static List<SObject> queryWithBinds(String queries, Map<String, Object> bindMap, System.AccessLevel accessLevel) { }
    /**
     * Restore the database state to a previous savepoint
     */
    global static void rollback(System.Savepoint savepoint) { }
    /**
     * Set a database savepoint
     */
    global static System.Savepoint setSavepoint() { }
    /**
     * Insert a tree of records.
     */
    global static List<Database.NestedSaveResult> treeSave(List<SObject> sobjects) { }
    /**
     * Insert a tree of records.
     */
    global static Database.NestedSaveResult treeSave(SObject sobject) { }
    /**
     * undelete an object, returning the api undelete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UndeleteResult undelete(Id id, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * undelete a set of objects, returning the api undelete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UndeleteResult> undelete(List<Id> ids, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * undelete a set of objects, returning the api undelete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UndeleteResult> undelete(List<SObject> sobjects, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * undelete an object, returning the api delete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UndeleteResult undelete(SObject sobject, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * undelete an object, returning the api uddelete results upon success
     */
    global static Database.UndeleteResult undelete(Id id, System.AccessLevel accessLevel) { }
    /**
     * undelete an object, returning the api undelete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UndeleteResult undelete(Id id, Boolean allOrNothing) { }
    /**
     * undelete a set of objects, returning the api undelete results upon success
     */
    global static List<Database.UndeleteResult> undelete(List<Id> ids, System.AccessLevel accessLevel) { }
    /**
     * undelete a set of objects, returning the api undelete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UndeleteResult> undelete(List<Id> ids, Boolean allOrNothing) { }
    /**
     * undelete a set of objects, returning the api undelete results including failures
     */
    global static List<Database.UndeleteResult> undelete(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * undelete a set of objects, returning the api undelete results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UndeleteResult> undelete(List<SObject> sobjects, Boolean allOrNothing) { }
    /**
     * undelete an object, returning the api delete results
     */
    global static Database.UndeleteResult undelete(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * undelete an object, returning the api delete results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UndeleteResult undelete(SObject sobject, Boolean allOrNothing) { }
    /**
     * undelete an object, returning the api uddelete results upon success
     */
    global static Database.UndeleteResult undelete(Id id) { }
    /**
     * undelete a set of objects, returning the api undelete results upon success
     */
    global static List<Database.UndeleteResult> undelete(List<Id> ids) { }
    /**
     * undelete a set of objects, returning the api undelete results including failures
     */
    global static List<Database.UndeleteResult> undelete(List<SObject> sobjects) { }
    /**
     * undelete an object, returning the api delete results
     */
    global static Database.UndeleteResult undelete(SObject sobject) { }
    /**
     * Update a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> update(List<SObject> sobjects, Database.DMLOptions DmlOptions, System.AccessLevel accessLevel) { }
    /**
     * Update a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> update(List<SObject> sobjects, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Update an object, returning the api save results
     */
    global static Database.SaveResult update(SObject sobject, Database.DMLOptions DmlOptions, System.AccessLevel accessLevel) { }
    /**
     * Update an object, returning the api save results
     */
    global static Database.SaveResult update(SObject sobject, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Update a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> update(List<SObject> sobjects, Database.DMLOptions DmlOptions) { }
    /**
     * Update a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> update(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Update a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> update(List<SObject> sobjects, Boolean allOrNothing) { }
    /**
     * Update an object, returning the api save results
     */
    global static Database.SaveResult update(SObject sobject, Database.DMLOptions DmlOptions) { }
    /**
     * Update an object, returning the api save results
     */
    global static Database.SaveResult update(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Update an object, returning the api save results
     */
    global static Database.SaveResult update(SObject sobject, Boolean allOrNothing) { }
    /**
     * Update a set of objects, returning the api save results including failures
     */
    global static List<Database.SaveResult> update(List<SObject> sobjects) { }
    /**
     * Update an object, returning the api save results
     */
    global static Database.SaveResult update(SObject sobject) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> updateAsync(List<SObject> sobjects, Object callback, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult updateAsync(SObject sobject, Object callback, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> updateAsync(List<SObject> sobjects, Object callback) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> updateAsync(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult updateAsync(SObject sobject, Object callback) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult updateAsync(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static List<Database.SaveResult> updateAsync(List<SObject> sobjects) { }
    /**
     * Initiate asynchronous update of an object, returning asyncLocator in the api save results
     */
    global static Database.SaveResult updateAsync(SObject sobject) { }
    /**
     * Immediately update a set of virtual objects, returning the api save results
     */
    global static List<Database.SaveResult> updateImmediate(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Immediately update a virtual object, returning the api save results
     */
    global static Database.SaveResult updateImmediate(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Immediately update a set of virtual objects, returning the api save results
     */
    global static List<Database.SaveResult> updateImmediate(List<SObject> sobjects) { }
    /**
     * Immediately update a virtual object, returning the api save results
     */
    global static Database.SaveResult updateImmediate(SObject sobject) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, Schema.SObjectField field, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Upsert an object, returning the api upsert results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, Schema.SObjectField field , System.AccessLevel accessLevel) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, Schema.SObjectField field, Boolean allOrNothing) { }
    /**
     * Upsert an object, returning the api upsert results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UpsertResult upsert(SObject sobject, Boolean allOrNothing, System.AccessLevel accessLevel) { }
    /**
     * Upsert an object, returning the api upsert results
     */
    global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field, System.AccessLevel accessLevel) { }
    /**
     * Upsert an object, returning the api upsert results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field, Boolean allOrNothing) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, System.AccessLevel accessLevel) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures, optionally choosing to leave any successes in the current transaction
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, Boolean allOrNothing) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects, Schema.SObjectField field) { }
    /**
     * Upsert an object, returning the api upsert results
     */
    global static Database.UpsertResult upsert(SObject sobject, System.AccessLevel accessLevel) { }
    /**
     * Upsert an object, returning the api upsert results, optionally choosing to leave any successes in the current transaction
     */
    global static Database.UpsertResult upsert(SObject sobject, Boolean allOrNothing) { }
    /**
     * Upsert an object, returning the api upsert results
     */
    global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field) { }
    /**
     * Upsert a set of objects, returning the api upsert results including failures
     */
    global static List<Database.UpsertResult> upsert(List<SObject> sobjects) { }
    /**
     * Upsert an object, returning the api upsert results
     */
    global static Database.UpsertResult upsert(SObject sobject) { }
 
}