Package org.neo4j.gds.beta.indexInverse
Interface InverseRelationshipsConfig
-
- All Superinterfaces:
org.neo4j.gds.config.AlgoBaseConfig,org.neo4j.gds.config.BaseConfig,org.neo4j.gds.config.ConcurrencyConfig,org.neo4j.gds.config.JobIdConfig,org.neo4j.gds.config.ToMapConvertible
@Configuration public interface InverseRelationshipsConfig extends org.neo4j.gds.config.AlgoBaseConfig
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.List<java.lang.String>nodeLabels()static InverseRelationshipsConfigof(org.neo4j.gds.core.CypherMapWrapper configuration)static @Nullable java.util.List<java.lang.String>parseRelTypes(java.lang.Object input)java.util.List<java.lang.String>relationshipTypes()default voidvalidateNotIndexed(org.neo4j.gds.api.GraphStore graphStore, java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels, java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)default voidvalidateNotUndirected(org.neo4j.gds.api.GraphStore graphStore, java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels, java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)-
Methods inherited from interface org.neo4j.gds.config.AlgoBaseConfig
graphStoreValidation, internalRelationshipTypes, nodeLabelIdentifiers, validateNodeLabels, validateRelationshipTypes
-
Methods inherited from interface org.neo4j.gds.config.BaseConfig
configKeys, logProgress, sudo, toMap, usernameOverride
-
-
-
-
Method Detail
-
parseRelTypes
@Nullable static @Nullable java.util.List<java.lang.String> parseRelTypes(java.lang.Object input)
-
relationshipTypes
@ConvertWith(method="parseRelTypes") java.util.List<java.lang.String> relationshipTypes()
- Specified by:
relationshipTypesin interfaceorg.neo4j.gds.config.AlgoBaseConfig
-
nodeLabels
@Ignore default java.util.List<java.lang.String> nodeLabels()
- Specified by:
nodeLabelsin interfaceorg.neo4j.gds.config.AlgoBaseConfig
-
of
static InverseRelationshipsConfig of(org.neo4j.gds.core.CypherMapWrapper configuration)
-
validateNotIndexed
@GraphStoreValidationCheck default void validateNotIndexed(org.neo4j.gds.api.GraphStore graphStore, java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels, java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)
-
validateNotUndirected
@GraphStoreValidationCheck default void validateNotUndirected(org.neo4j.gds.api.GraphStore graphStore, java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels, java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)
-
-