Toggle navigation
Home
org.neo4j.graphdb.Result to org.neo4j.values.result.QueryResult
No. of Instances - 6
No. of Commits - 1
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Method invocation
getQueryExecutionType
to
executionType
getExecutionPlanDescription
to
executionPlanDescription
Add or Remove Method invocation
delegate.getQueryStatistics()
to
delegate.queryStatistics()
delegate.getQueryStatistics().containsUpdates()
to
delegate.queryStatistics().containsUpdates()
when(result.getQueryExecutionType())
to
when(result.executionType())
when(result.getQueryStatistics())
to
when(result.queryStatistics())
when(result.getQueryExecutionType())
to
when(result.executionType())
when(result.getQueryStatistics())
to
when(result.queryStatistics())
when(result.getExecutionPlanDescription())
to
when(result.executionPlanDescription())
when(result.getQueryExecutionType())
to
when(result.executionType())
when(result.getQueryStatistics())
to
when(result.queryStatistics())
when(result.getExecutionPlanDescription())
to
when(result.executionPlanDescription())
when(result.getQueryStatistics())
to
when(result.queryStatistics())
when(result.getQueryExecutionType())
to
when(result.executionType())
delegate.columns().toArray(new String[delegate.columns().size()])
to
delegate.fieldNames()