Interface ShortestPathAStarConfig

  • All Superinterfaces:
    org.neo4j.graphalgo.config.AlgoBaseConfig, org.neo4j.graphalgo.config.BaseConfig, org.neo4j.graphalgo.config.ConcurrencyConfig, org.neo4j.graphalgo.config.RelationshipWeightConfig

    @Configuration
    public interface ShortestPathAStarConfig
    extends org.neo4j.graphalgo.config.AlgoBaseConfig, org.neo4j.graphalgo.config.RelationshipWeightConfig
    • Field Summary

      • Fields inherited from interface org.neo4j.graphalgo.config.AlgoBaseConfig

        NODE_LABELS_KEY
      • Fields inherited from interface org.neo4j.graphalgo.config.BaseConfig

        SUDO_KEY
      • Fields inherited from interface org.neo4j.graphalgo.config.ConcurrencyConfig

        CONCURRENCY_KEY, CONCURRENCY_LIMITATION, DEFAULT_CONCURRENCY
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      long endNodeId()  
      static long nodeId​(org.neo4j.graphdb.Node node)  
      static ShortestPathAStarConfig of​(java.util.Optional<java.lang.String> graphName, java.util.Optional<org.neo4j.graphalgo.config.GraphCreateConfig> implicitCreateConfig, java.lang.String username, org.neo4j.graphalgo.core.CypherMapWrapper userInput)  
      default java.lang.String propertyKeyLat()  
      default java.lang.String propertyKeyLon()  
      long startNodeId()  
      • Methods inherited from interface org.neo4j.graphalgo.config.AlgoBaseConfig

        graphName, implicitCreateConfig, internalRelationshipTypes, nodeLabelIdentifiers, nodeLabels, relationshipTypes
      • Methods inherited from interface org.neo4j.graphalgo.config.BaseConfig

        configKeys, sudo, toMap, username
      • Methods inherited from interface org.neo4j.graphalgo.config.ConcurrencyConfig

        concurrency, validateConcurrency
      • Methods inherited from interface org.neo4j.graphalgo.config.RelationshipWeightConfig

        relationshipWeightProperty
    • Method Detail

      • propertyKeyLat

        @Default
        default java.lang.String propertyKeyLat()
      • propertyKeyLon

        @Default
        default java.lang.String propertyKeyLon()
      • startNodeId

        @ConvertWith("nodeId")
        @Key("startNode")
        long startNodeId()
      • endNodeId

        @ConvertWith("nodeId")
        @Key("endNode")
        long endNodeId()
      • nodeId

        static long nodeId​(org.neo4j.graphdb.Node node)
      • of

        static ShortestPathAStarConfig of​(java.util.Optional<java.lang.String> graphName,
                                          java.util.Optional<org.neo4j.graphalgo.config.GraphCreateConfig> implicitCreateConfig,
                                          java.lang.String username,
                                          org.neo4j.graphalgo.core.CypherMapWrapper userInput)