Package org.neo4j.gds.api
Interface RelationshipPropertyStore
-
public interface RelationshipPropertyStore
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRelationshipPropertyStore.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static RelationshipPropertyStore.Builderbuilder()default booleancontainsKey(java.lang.String propertyKey)static RelationshipPropertyStoreempty()default RelationshipPropertyget(java.lang.String propertyKey)default booleanisEmpty()default java.util.Set<java.lang.String>keySet()java.util.Map<java.lang.String,RelationshipProperty>relationshipProperties()default java.util.Collection<RelationshipProperty>values()
-
-
-
Method Detail
-
relationshipProperties
java.util.Map<java.lang.String,RelationshipProperty> relationshipProperties()
-
get
default RelationshipProperty get(java.lang.String propertyKey)
-
isEmpty
default boolean isEmpty()
-
keySet
default java.util.Set<java.lang.String> keySet()
-
values
default java.util.Collection<RelationshipProperty> values()
-
containsKey
default boolean containsKey(java.lang.String propertyKey)
-
empty
static RelationshipPropertyStore empty()
-
builder
static RelationshipPropertyStore.Builder builder()
-
-