Package com.graphdbapi.values.virtual
Class CypherRelationship
- java.lang.Object
-
- com.graphdbapi.values.CypherAny
-
- com.graphdbapi.values.virtual.CypherRelationship
-
- All Implemented Interfaces:
com.graphdbapi.memory.MemoryEstimable
public abstract class CypherRelationship extends CypherAny
Driver传输Relationship类型的对象。
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CypherRelationship(java.lang.String id)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.lang.Long
endNodeId()
java.lang.String
id()
abstract CypherMap
properties()
abstract java.lang.Long
startNodeId()
java.lang.String
toString()
abstract CypherText
type()
-
Methods inherited from class com.graphdbapi.values.CypherAny
getMemorySize
-
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
startNodeId
public abstract java.lang.Long startNodeId()
-
endNodeId
public abstract java.lang.Long endNodeId()
-
id
public java.lang.String id()
-
type
public abstract CypherText type()
-
properties
public abstract CypherMap properties()
-
-