blob: 3c601f817a6974b39596b2321d98f37066e46db7 [file] [log] [blame]
package org.openflow.protocol.match;
import org.openflow.types.OFValueType;
public interface MatchBuilder extends Match {
public <F extends OFValueType> MatchBuilder set(MatchField<F> match, F value);
//public <M> void setMasked(MatchField<?, M> match, M value);
public Match getMatch();
}