Interface Hits.HitsConfig

  • All Superinterfaces:
    org.neo4j.graphalgo.config.AlgoBaseConfig, org.neo4j.graphalgo.config.BaseConfig, org.neo4j.graphalgo.config.ConcurrencyConfig, org.neo4j.graphalgo.config.IterationsConfig, org.neo4j.graphalgo.config.MutateConfig, org.neo4j.graphalgo.config.MutatePropertyConfig, org.neo4j.graphalgo.beta.pregel.PregelConfig, org.neo4j.graphalgo.config.RelationshipWeightConfig, org.neo4j.graphalgo.config.WriteConfig, org.neo4j.graphalgo.config.WritePropertyConfig
    Enclosing class:
    Hits

    @Configuration
    public static interface Hits.HitsConfig
    extends org.neo4j.graphalgo.beta.pregel.PregelConfig
    • 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
      • Fields inherited from interface org.neo4j.graphalgo.config.IterationsConfig

        MAX_ITERATIONS_KEY
      • Fields inherited from interface org.neo4j.graphalgo.config.MutatePropertyConfig

        MUTATE_PROPERTY_KEY
      • Fields inherited from interface org.neo4j.graphalgo.config.WriteConfig

        WRITE_CONCURRENCY_KEY
      • Fields inherited from interface org.neo4j.graphalgo.config.WritePropertyConfig

        WRITE_PROPERTY_KEY
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default java.lang.String authProperty()  
      int hitsIterations()  
      default java.lang.String hubProperty()  
      default boolean isAsynchronous()  
      default int maxIterations()  
      static Hits.HitsConfig of​(java.lang.String username, java.util.Optional<java.lang.String> graphName, java.util.Optional<org.neo4j.graphalgo.config.GraphCreateConfig> maybeImplicitConfig, org.neo4j.graphalgo.core.CypherMapWrapper userConfig)  
      • 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.IterationsConfig

        validateIterations
      • Methods inherited from interface org.neo4j.graphalgo.beta.pregel.PregelConfig

        mutateProperty, writeConcurrency, writeProperty
      • Methods inherited from interface org.neo4j.graphalgo.config.RelationshipWeightConfig

        relationshipWeightProperty
      • Methods inherited from interface org.neo4j.graphalgo.config.WriteConfig

        validateWriteConcurrency
    • Method Detail

      • hitsIterations

        int hitsIterations()
      • maxIterations

        @Derived
        @Ignore
        default int maxIterations()
        Specified by:
        maxIterations in interface org.neo4j.graphalgo.config.IterationsConfig
      • isAsynchronous

        @Ignore
        @Derived
        default boolean isAsynchronous()
        Specified by:
        isAsynchronous in interface org.neo4j.graphalgo.beta.pregel.PregelConfig
      • hubProperty

        @Default
        @ConvertWith("org.apache.commons.lang3.StringUtils#trimToNull")
        default java.lang.String hubProperty()
      • authProperty

        @Default
        @ConvertWith("org.apache.commons.lang3.StringUtils#trimToNull")
        default java.lang.String authProperty()
      • of

        static Hits.HitsConfig of​(java.lang.String username,
                                  java.util.Optional<java.lang.String> graphName,
                                  java.util.Optional<org.neo4j.graphalgo.config.GraphCreateConfig> maybeImplicitConfig,
                                  org.neo4j.graphalgo.core.CypherMapWrapper userConfig)