public interface DocumentDigest
Document. The digest can be used to efficiently
determine whether document contents have changed. This interface does
not define the algorithm used to compute the digest.| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(byte[] data)
Compares this digest to the digest of a byte array.
|
boolean |
equals(java.io.InputStream input)
Compares this digest to the digest of an input stream.
|
boolean |
equals(java.lang.Object digest)
Compares this digest to the specified object.
|
boolean equals(java.lang.Object digest)
equals in class java.lang.Objectdigest - object to be compared to this digesttrue if digest is a
DocumentDigest equal to this digestboolean equals(byte[] data)
data - byte array for which a digest will be computedtrue if the digest computed for data is
equal to this digestboolean equals(java.io.InputStream input)
input - input stream for which a digest will be computedtrue if the digest computed for input
is equal to this digest