Interface IValueUpdateRule
- All Known Implementing Classes:
-
RemoveSubsetPrefixRule
public interface IValueUpdateRule
The interface is used to make hash calculating / equality check more flexible. This rule will pre-process dictionaries before comparison.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
update
(com.itextpdf.kernel.pdf.PdfDictionary pdfDictionary) Change thePdfDictionary
before hash calculating / equality check to allow more flexible comparison logic.
-
Method Details
-
update
void update(com.itextpdf.kernel.pdf.PdfDictionary pdfDictionary) Change thePdfDictionary
before hash calculating / equality check to allow more flexible comparison logic. Note that it is not expected to change the internal state of any object included into the original dictionary as a value. New object should be put instead.- Parameters:
-
pdfDictionary
- is a PdfDictionary to modify
-