Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decodeSimilarDocHash (0.1 sec)

  1. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            assertEquals(hash, documentHelper.decodeSimilarDocHash(value));
            hash = "";
            value = "";
            assertEquals(hash, documentHelper.decodeSimilarDocHash(value));
    
            assertNull(documentHelper.decodeSimilarDocHash(null));
        }
    
        public void test_appendLineNumber() {
            DocumentHelper documentHelper = new DocumentHelper();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

         *
         * @param hash the encoded hash string to decode
         * @return the decoded hash string, or the original hash if decoding fails
         */
        public String decodeSimilarDocHash(final String hash) {
            if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top