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 3e828d7 commit 630c5d8Copy full SHA for 630c5d8
src/main/java/com/redislabs/redisgraph/ResultSet.java
@@ -6,12 +6,21 @@
6
/**
7
* Hold a query result
8
*/
9
-public interface ResultSet extends Iterator<Record>{
10
- /**
11
- * Return the query statistics
12
- * @return statistics object
13
- */
14
- Statistics getStatistics();
+public interface ResultSet extends Iterator<Record> {
15
16
- List<String> getHeader();
17
-}
+ public enum ResultSetScalarTypes {
+ PROPERTY_UNKNOWN,
+ PROPERTY_NULL,
+ PROPERTY_STRING,
+ PROPERTY_INTEGER,
+ PROPERTY_BOOLEAN,
+ PROPERTY_DOUBLE,
18
+ }
19
+
20
+ public int size();
21
22
+ Statistics getStatistics();
23
24
+ Header getHeader();
25
26
+}
0 commit comments