Kùzu C++ API
Loading...
Searching...
No Matches
path_semantic.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <string>
5
6namespace kuzu {
7namespace common {
8
9enum class PathSemantic : uint8_t {
10 WALK = 0,
11 TRAIL = 1,
12 ACYCLIC = 2,
13};
14
16 static PathSemantic fromString(const std::string& str);
17 static std::string toString(PathSemantic semantic);
18};
19
20} // namespace common
21} // namespace kuzu
PathSemantic
Definition path_semantic.h:9
Definition alter_type.h:5
Definition path_semantic.h:15
static std::string toString(PathSemantic semantic)
static PathSemantic fromString(const std::string &str)