We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d04c7a commit 7e04b3dCopy full SHA for 7e04b3d
src/main/java/com/arangodb/util/ImportOptionsRaw.java
@@ -2,14 +2,18 @@
2
3
import java.util.Map;
4
5
-public class ImportOptionsRaw extends ImportOptions {
+public class ImportOptionsRaw extends ImportOptionsJson {
6
7
public enum ImportType {
8
DOCUMENTS, LIST, AUTO
9
}
10
11
private ImportType importType;
12
13
+ public ImportOptionsRaw(ImportType importType) {
14
+ this.importType = importType;
15
+ }
16
+
17
/**
18
* Determines how the body of the request will be interpreted. type can have
19
* the following values:
0 commit comments