Uses of Interface
org.semanticweb.elk.util.hashing.Hasher

  • Uses of Hasher in org.semanticweb.elk.util.hashing

    Methods in org.semanticweb.elk.util.hashing with parameters of type Hasher 
    Modifier and Type Method Description
    static <T> int HashGenerator.combineListHash​(Iterator<? extends T> hashObjectIterator, Hasher<T> hasher)
    Combine the hash codes of a collection of objects into one in a way that depends on their order.
    static <T> int HashGenerator.combineListHash​(List<? extends T> hashObjects, Hasher<T> hasher)
    Combine the hash codes of a collection of objects into one in a way that depends on their order.
    static <T> int HashGenerator.combineMultisetHash​(boolean finalize, Iterable<? extends T> hashObjects, Hasher<T> hasher)
    Combine the hash codes of a collection of objects with an associative commutative hash function.
    static <T> int HashGenerator.combineMultisetHash​(boolean finalize, Iterator<? extends T> hashObjectIterator, Hasher<T> hasher)
    Combine the hash codes of a collection of objects with an associative commutative hash function.