Package org.rabinfingerprint.handprint.FingerFactory

Examples of org.rabinfingerprint.handprint.FingerFactory.ChunkVisitor


  public Multimap<Long, Interval> getAllFingers() {
    if (fingers != null)
      return fingers;
    try {
      fingers = ArrayListMultimap.create();
      factory.getChunkFingerprints(stream, new ChunkVisitor() {
        public void visit(long fingerprint, long chunkStart, long chunkEnd) {
          fingers.put(fingerprint, new Interval(chunkStart, chunkEnd));
        }
      });
    } catch (IOException e) {
View Full Code Here

TOP

Related Classes of org.rabinfingerprint.handprint.FingerFactory.ChunkVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.