blob: f62d7f9701f5ec3015470d832955ef9628cec963 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.projectfloodlight.openflow.util;
2
3import java.util.List;
4
5import org.projectfloodlight.openflow.types.PrimitiveSinkable;
6
7import com.google.common.hash.PrimitiveSink;
8
9public class FunnelUtils {
10 public static void putList(List<? extends PrimitiveSinkable> sinkables, PrimitiveSink sink) {
11 for(PrimitiveSinkable p: sinkables)
12 p.putTo(sink);
13 }
14}