Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maxDepth (1.39 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java

        }
    
        /**
         * Sets the maximum depth for nested structure extraction.
         *
         * @param maxDepth the maximum depth
         */
        public void setMaxDepth(final int maxDepth) {
            this.maxDepth = maxDepth;
        }
    
        /**
         * Sets the field separator for key-value pairs.
         *
         * @param fieldSeparator the field separator
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

         * @return The maximum depth.
         */
        public int getMaxDepth() {
            return maxDepth;
        }
    
        /**
         * Sets the maximum depth.
         * @param maxDepth The maximum depth.
         */
        public void setMaxDepth(final int maxDepth) {
            this.maxDepth = maxDepth;
        }
    
        /**
         * Returns the maximum access count.
         * @return The maximum access count.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top