Enum CompressionConfigValue

    • Constructor Detail

    • Method Detail

      • values

        public static CompressionConfigValue[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CompressionConfigValue c : CompressionConfigValue.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CompressionConfigValue valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getName

        public final java.lang.String getName()
        Specified by:
        getName in interface NamedResource
        Returns:
        The resource name
      • toString

        public final java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<CompressionConfigValue>
      • isDelayed

        public boolean isDelayed()
        Description copied from interface: CompressionInformation
        Delayed compression is an Open-SSH specific feature which informs both the client and server to not compress data before the session has been authenticated.
        Specified by:
        isDelayed in interface CompressionInformation
        Returns:
        if the compression is delayed after authentication or not
      • isCompressionExecuted

        public boolean isCompressionExecuted()
        Specified by:
        isCompressionExecuted in interface CompressionInformation
        Returns:
        true if there is any compression executed by this "compressor" - special case for 'none'