Package org.neo4j.gds.api.schema
Interface RelationshipSchema
-
- All Superinterfaces:
ElementSchema<RelationshipSchema,org.neo4j.gds.RelationshipType,MutableRelationshipSchemaEntry,RelationshipPropertySchema>
- All Known Implementing Classes:
MutableRelationshipSchema
public interface RelationshipSchema extends ElementSchema<RelationshipSchema,org.neo4j.gds.RelationshipType,MutableRelationshipSchemaEntry,RelationshipPropertySchema>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<org.neo4j.gds.RelationshipType>availableTypes()java.util.Map<org.neo4j.gds.RelationshipType,Direction>directions()booleanisUndirected()booleanisUndirected(org.neo4j.gds.RelationshipType type)java.lang.ObjecttoMapOld()-
Methods inherited from interface org.neo4j.gds.api.schema.ElementSchema
allProperties, allProperties, entries, filter, get, hasProperties, hasProperty, propertySchemasFor, toMap, union, unionEntries, unionProperties
-
-
-
-
Method Detail
-
availableTypes
java.util.Set<org.neo4j.gds.RelationshipType> availableTypes()
-
isUndirected
boolean isUndirected()
-
isUndirected
boolean isUndirected(org.neo4j.gds.RelationshipType type)
-
directions
java.util.Map<org.neo4j.gds.RelationshipType,Direction> directions()
-
toMapOld
java.lang.Object toMapOld()
-
-