Package com.redislabs.redisgraph
Interface Statistics
-
- All Known Implementing Classes:
StatisticsImpl
public interface Statistics
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classStatistics.LabelDifferent Statistics labels
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancachedExecution()StringgetStringValue(Statistics.Label label)Retrieves the relevant statisticintindicesAdded()intindicesDeleted()intlabelsAdded()intnodesCreated()intnodesDeleted()intpropertiesSet()intrelationshipsCreated()intrelationshipsDeleted()
-
-
-
Method Detail
-
getStringValue
String getStringValue(Statistics.Label label)
Retrieves the relevant statistic- Parameters:
label- the requested statistic label- Returns:
- a String representation of the specific statistic or null
-
nodesCreated
int nodesCreated()
-
nodesDeleted
int nodesDeleted()
-
indicesAdded
int indicesAdded()
-
indicesDeleted
int indicesDeleted()
-
labelsAdded
int labelsAdded()
-
relationshipsDeleted
int relationshipsDeleted()
-
relationshipsCreated
int relationshipsCreated()
-
propertiesSet
int propertiesSet()
-
cachedExecution
boolean cachedExecution()
-
-