blob: ef79ffbdc0472d27a33cf6eb1a12a22f5064b07c [file] [log] [blame]
Andreas Wundsambc679f72013-08-01 22:13:09 -07001
2 @Override
3 public <F extends OFValueType<F>> F get(MatchField<F> field)
4 throws UnsupportedOperationException {
5 // FIXME yotam - please replace with real implementation
6 return null;
7 }
8
9 @Override
10 public <F extends OFValueType<F>> Masked<F> getMasked(MatchField<F> field)
11 throws UnsupportedOperationException {
12 // FIXME yotam - please replace with real implementation
13 return null;
14 }
15
16 @Override
17 public boolean supports(MatchField<?> field) {
18 // FIXME yotam - please replace with real implementation
19 return false;
20 }
21
22 @Override
23 public boolean supportsMasked(MatchField<?> field) {
24 // FIXME yotam - please replace with real implementation
25 return false;
26 }
27
28 @Override
29 public boolean isExact(MatchField<?> field) {
30 // FIXME yotam - please replace with real implementation
31 return false;
32 }
33
34 @Override
35 public boolean isFullyWildcarded(MatchField<?> field) {
36 // FIXME yotam - please replace with real implementation
37 return false;
38 }
39
40 @Override
41 public boolean isPartiallyMasked(MatchField<?> field) {
42 // FIXME yotam - please replace with real implementation
43 return false;
44 }
Rob Vaterlaus934b4ad2013-11-12 10:08:59 -080045
46 @Override
47 public Iterable<MatchField<?>> getMatchFields() {
48 throw new UnsupportedOperationException();
49 }