Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isAlgorithmSupported (0.07 seconds)

  1. 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();
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  2. 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));
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 9.1K bytes
    - Click Count (0)
Back to Top