Toggle navigation
Home
com.tinkerpop.blueprints.impls.orient.OrientGraph to com.orientechnologies.orient.core.db.document.ODatabaseDocument
No. of Instances - 22
No. of Commits - 1
No. of Projects - {'orientdb'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
graph.getVertexType("Test").getClusterSelection()
to
graph.getClass("Test").getClusterSelection()
graph.getRawGraph().getURL().startsWith("remote:")
to
graph.getURL().startsWith("remote:")
factory.getTx()
to
factory.acquire()
t.countVertices("some-v-label")
to
t.getClass("some-v-label").count()
t.countEdges()
to
t.getClass("E").count()
factory.getTx()
to
factory.acquire()
gTx.addVertex("class:Client-Type")
to
gTx.newVertex("Client-Type")
gTx.addVertex("class:Client-Type")
to
gTx.newVertex("Client-Type")
f.getTx()
to
f.acquire()
f.getTx()
to
f.acquire()
graph.getVertexType("TestNode").getClusterSelection()
to
graph.getClass("TestNode").getClusterSelection()
graph.getRawGraph().getURL().startsWith("remote:")
to
graph.getURL().startsWith("remote:")
graph.getVertexType("TestNode").getClusterSelection()
to
graph.getClass("TestNode").getClusterSelection()
graph.getRawGraph().getURL().startsWith("remote:")
to
graph.getURL().startsWith("remote:")
graph.getVertexType("Test").getClusterSelection().getClass().getName()
to
graph.getClass("Test").getClusterSelection().getClass().getName()
graph.getRawGraph().getURL()
to
graph.getURL()
graph.getVertexType("Test").getClusterSelection().getName()
to
graph.getClass("Test").getClusterSelection().getName()
graph.getVertexType("Test").getClusterSelection().getClass().getName()
to
graph.getClass("Test").getClusterSelection().getClass().getName()
graph.getVertexType("Test").getClusterSelection().getName()
to
graph.getClass("Test").getClusterSelection().getName()
graph.getRawGraph()
to
graph
g.getVertexType("Client" + i)
to
g.getClass("Client" + i)
g.getEdgeType("Knows" + i)
to
g.getClass("Knows" + i)
Rename Method invocation
shutdown
to
close
getVertex
to
load
shutdown
to
close
shutdown
to
close
shutdown
to
close
shutdown
to
begin
shutdown
to
close
addVertex
to
newVertex
addVertex
to
newVertex
shutdown
to
close
shutdown
to
close
shutdown
to
close
createVertexType
to
createVertexClass
createEdgeType
to
createEdgeClass
shutdown
to
close
shutdown
to
close
createVertexType
to
createVertexClass
createEdgeType
to
createEdgeClass
shutdown
to
close
shutdown
to
close
shutdown
to
close
shutdown
to
close
addVertex
to
newVertex
shutdown
to
close
shutdown
to
close
getVertex
to
load
shutdown
to
close
shutdown
to
close
Cascading Type Change (Different)
OrientVertex
to
OVertex
Vertex
to
OVertex
Vertex
to
OVertex
OrientVertexType
to
OClass
OrientVertexType
to
OClass
OrientVertex
to
OVertex
Update String Literal
"class:some-v-label"
to
"some-v-label"
"class:some-v-label"
to
"some-v-label"
"Smith"
to
"Test"