Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isAlgorithmSupported (0.42 sec)

  1. src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java

            assertTrue(compressionService.isAlgorithmSupported(CompressionService.COMPRESSION_NONE));
            assertTrue(compressionService.isAlgorithmSupported(CompressionService.COMPRESSION_LZ77));
            assertTrue(compressionService.isAlgorithmSupported(CompressionService.COMPRESSION_LZ77_HUFFMAN));
            assertFalse(compressionService.isAlgorithmSupported(CompressionService.COMPRESSION_LZNT1));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/compression/CompressionService.java

        /**
         * Checks if the specified compression algorithm is supported.
         *
         * @param algorithm the compression algorithm to check
         * @return true if the algorithm is supported
         */
        boolean isAlgorithmSupported(int algorithm);
    
        /**
         * Gets the list of supported compression algorithms.
         *
         * @return array of supported algorithm constants
         */
        int[] getSupportedAlgorithms();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top