Example usage for com.google.common.hash Funnel interface-usage

List of usage examples for com.google.common.hash Funnel interface-usage

Introduction

In this page you can find the example usage for com.google.common.hash Funnel interface-usage.

Usage

From source file org.calrissian.recipes.storm.common.bolt.IPv4Funnel.java

/**
 * Date: 10/31/12
 * Time: 2:04 PM
 */
public class IPv4Funnel implements Funnel<IPv4>, Serializable {

From source file iox.easycache.internal.AnyFunnel.java

public class AnyFunnel implements Funnel<Object> {
    private static final long serialVersionUID = -6606932468537196126L;
    static final byte NUL = 0;
    static final byte ONE = -1;
    static final byte MARK = 74; // #74!!!!

From source file io.github.maxymania.powercache.hash.AnyFunnel.java

/**
 *
 * @author Simon Schmidt
 */
public class AnyFunnel implements Funnel<Object> {

From source file com.github.fge.grappa.transform.hash.LabelListFunnel.java

/**
 * A {@link Funnel} for a list of (ASM) {@link Label}s
 *
 * <p>This funnel keeps a set of labels it has already been asked to funnel;
 * when one has already been visited, this funnel does nothing.</p>
 *

From source file org.apache.marmotta.commons.sesame.hashing.URIFunnel.java

/**
 * Implementation of a Guava Funnel for Sesame URIs
 *
 * @author Sebastian Schaffert (sschaffert@apache.org)
 */
public class URIFunnel implements Funnel<URI> {

From source file cosmos.sql.call.ChildVisitor.java

/**
 * Child visitor is a base visitor who also has a funnel to help define values to any possible sink.
 */
public abstract class ChildVisitor extends BaseVisitor<ChildVisitor> implements Funnel<ChildVisitor> {

    private static final long serialVersionUID = 1L;

From source file org.apache.marmotta.kiwi.hashing.NodeFunnel.java

/**
 * Add file description here!
 *
 * @author Sebastian Schaffert (sschaffert@apache.org)
 */
public class NodeFunnel implements Funnel<KiWiNode> {

From source file org.apache.marmotta.kiwi.hashing.TripleFunnel.java

/**
 * A Guava Funnel implementation based on the serialization of the triple.
 *
 * @author Sebastian Schaffert (sschaffert@apache.org)
 */
public class TripleFunnel implements Funnel<KiWiTriple> {

From source file org.helios.tsdb.plugins.util.bloom.AbstractRegexBackedBloom.java

/**
 * <p>Title: AbstractRegexBackedBloom</p>
 * <p>Description: </p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>org.helios.tsdb.plugins.util.bloom.AbstractRegexBackedBloom</code></p>

From source file at.alladin.rmbt.mapServer.parameters.TileParameters.java

public abstract class TileParameters implements Funnel<TileParameters> {
    protected static final Pattern PATH_PATTERN = Pattern.compile("(\\d+)/(\\d+)/(\\d+)");
    protected static final int MAX_ZOOM = 21;

    protected final Path path;
    protected final int size;