Interface SpanningTreeConfig

  • 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.RelationshipWeightConfig, SpanningTreeBaseConfig, org.neo4j.gds.config.ToMapConvertible, org.neo4j.gds.config.WriteConfig, org.neo4j.gds.config.WritePropertyConfig

    @Configuration
    public interface SpanningTreeConfig
    extends SpanningTreeBaseConfig
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String WRITE_RELATIONSHIP_TYPE  
      • Fields inherited from interface org.neo4j.gds.config.AlgoBaseConfig

        NODE_LABELS_KEY, RELATIONSHIP_TYPES_KEY
      • Fields inherited from interface org.neo4j.gds.config.BaseConfig

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

        CONCURRENCY_KEY, CONCURRENCY_LIMITATION, DEFAULT_CONCURRENCY
      • Fields inherited from interface org.neo4j.gds.config.RelationshipWeightConfig

        RELATIONSHIP_WEIGHT_PROPERTY
      • Fields inherited from interface org.neo4j.gds.config.WriteConfig

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

        WRITE_PROPERTY_KEY
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      static SpanningTreeConfig of​(java.util.function.DoubleUnaryOperator minMax, org.neo4j.gds.core.CypherMapWrapper userInput)  
      java.lang.String weightWriteProperty()  
      default java.lang.String writeProperty()  
      • Methods inherited from interface org.neo4j.gds.config.AlgoBaseConfig

        graphStoreValidation, internalRelationshipTypes, nodeLabelIdentifiers, nodeLabels, relationshipTypes, validateNodeLabels, validateRelationshipTypes
      • Methods inherited from interface org.neo4j.gds.config.BaseConfig

        configKeys, sudo, toMap, usernameOverride
      • Methods inherited from interface org.neo4j.gds.config.ConcurrencyConfig

        concurrency, minBatchSize, validateConcurrency
      • Methods inherited from interface org.neo4j.gds.config.JobIdConfig

        jobId
      • Methods inherited from interface org.neo4j.gds.config.RelationshipWeightConfig

        hasRelationshipWeightProperty, relationshipWeightProperty, relationshipWeightValidation, validateRelationshipWeightProperty
      • Methods inherited from interface org.neo4j.gds.config.WriteConfig

        validateGraphIsSuitableForWrite, validateWriteConcurrency, writeConcurrency
    • Field Detail

      • WRITE_RELATIONSHIP_TYPE

        static final java.lang.String WRITE_RELATIONSHIP_TYPE
        See Also:
        Constant Field Values
    • Method Detail

      • weightWriteProperty

        java.lang.String weightWriteProperty()
      • writeProperty

        @Default
        @Derived
        default java.lang.String writeProperty()
        Specified by:
        writeProperty in interface org.neo4j.gds.config.WritePropertyConfig
      • of

        static SpanningTreeConfig of​(java.util.function.DoubleUnaryOperator minMax,
                                     org.neo4j.gds.core.CypherMapWrapper userInput)