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