MCPcopy Index your code
hub / github.com/RedisGraph/JRedisGraph / Header

Interface Header

src/main/java/com/redislabs/redisgraph/Header.java:8–23  ·  view source on GitHub ↗

Query response header interface. Represents the response schema (column names and types)

Source from the content-addressed store, hash-verified

6 * Query response header interface. Represents the response schema (column names and types)
7 */
8public interface Header {
9
10
11 enum ResultSetColumnTypes {
12 COLUMN_UNKNOWN,
13 COLUMN_SCALAR,
14 COLUMN_NODE,
15 COLUMN_RELATION
16
17 }
18
19
20 List<String> getSchemaNames();
21
22 List<ResultSetColumnTypes> getSchemaTypes();
23}

Callers 9

testSyncMethod · 0.95
testReadOnlyQueriesMethod · 0.95
testMultiExecMethod · 0.95
testHeaderMethod · 0.95
testMultiThreadMethod · 0.95
testArraySupportMethod · 0.95
parseResultMethod · 0.65

Implementers 1

HeaderImplsrc/main/java/com/redislabs/redisgraph

Calls

no outgoing calls

Tested by

no test coverage detected