blob: ef79ffbdc0472d27a33cf6eb1a12a22f5064b07c [file] [log] [blame]
@Override
public <F extends OFValueType<F>> F get(MatchField<F> field)
throws UnsupportedOperationException {
// FIXME yotam - please replace with real implementation
return null;
}
@Override
public <F extends OFValueType<F>> Masked<F> getMasked(MatchField<F> field)
throws UnsupportedOperationException {
// FIXME yotam - please replace with real implementation
return null;
}
@Override
public boolean supports(MatchField<?> field) {
// FIXME yotam - please replace with real implementation
return false;
}
@Override
public boolean supportsMasked(MatchField<?> field) {
// FIXME yotam - please replace with real implementation
return false;
}
@Override
public boolean isExact(MatchField<?> field) {
// FIXME yotam - please replace with real implementation
return false;
}
@Override
public boolean isFullyWildcarded(MatchField<?> field) {
// FIXME yotam - please replace with real implementation
return false;
}
@Override
public boolean isPartiallyMasked(MatchField<?> field) {
// FIXME yotam - please replace with real implementation
return false;
}
@Override
public Iterable<MatchField<?>> getMatchFields() {
throw new UnsupportedOperationException();
}