@@ -10,36 +10,11 @@ public enum OnDuplicate {
10
10
ERROR , UPDATE , REPLACE , IGNORE
11
11
}
12
12
13
- private Boolean createCollection ;
14
13
private CollectionType createCollectionType ;
15
14
private Boolean overwrite ;
16
15
private Boolean waitForSync ;
17
16
private OnDuplicate onDuplicate ;
18
17
19
- /**
20
- * (optional) If this parameter has a value of true or yes, then the
21
- * collection is created if it does not yet exist. Other values will be
22
- * ignored so the collection must be present for the operation to succeed.
23
- *
24
- * @return this ImportOptions object
25
- */
26
- public Boolean getCreateCollection () {
27
- return createCollection ;
28
- }
29
-
30
- /**
31
- * (optional) If this parameter has a value of true or yes, then the
32
- * collection is created if it does not yet exist. Other values will be
33
- * ignored so the collection must be present for the operation to succeed.
34
- *
35
- * @param createCollection
36
- * @return this ImportOptions object
37
- */
38
- public ImportOptions setCreateCollection (Boolean createCollection ) {
39
- this .createCollection = createCollection ;
40
- return this ;
41
- }
42
-
43
18
/**
44
19
* createCollectionType (optional): If this parameter has a value of
45
20
* document or edge, it will determine the type of collection that is going
0 commit comments