Enum ResponseChecksumValidation

    • Enum Constant Detail

      • WHEN_SUPPORTED

        public static final ResponseChecksumValidation WHEN_SUPPORTED
        Checksum will be validated for response if supported. Default setting.
      • WHEN_REQUIRED

        public static final ResponseChecksumValidation WHEN_REQUIRED
        Checksum will only be validated for response if required.
    • Method Detail

      • values

        public static ResponseChecksumValidation[] 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 (ResponseChecksumValidation c : ResponseChecksumValidation.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ResponseChecksumValidation valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • fromValue

        public static ResponseChecksumValidation fromValue​(String s)
        Returns the appropriate ResponseChecksumValidation value after parsing the parameter.
        Parameters:
        s - ResponseChecksumValidation in String format.
        Returns:
        ResponseChecksumValidation enum value.
        Throws:
        IllegalArgumentException - Unrecognized value for response checksum validation.