Interface NodePropertyContainer
-
- All Known Implementing Classes:
CSRGraphAdapter,GraphAdapter,HugeGraph,NodeFilteredGraph,UnionGraph
public interface NodePropertyContainerGetter interface for node properties.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>availableNodeProperties()NodePropertyValuesnodeProperties(java.lang.String propertyKey)Return the property values for a property key NOTE: Avoid using this on the hot path, favor caching the NodeProperties object when possible
-
-
-
Method Detail
-
nodeProperties
NodePropertyValues nodeProperties(java.lang.String propertyKey)
Return the property values for a property key NOTE: Avoid using this on the hot path, favor caching the NodeProperties object when possible- Parameters:
propertyKey- the node property key- Returns:
- the values associated with that key
-
availableNodeProperties
java.util.Set<java.lang.String> availableNodeProperties()
-
-