blob: 6570df82616cfd96a4edc68b6a4c53208ac1d343 [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 }
45
46 @Override
Yotam Harchola8b9bd32013-08-20 11:32:30 -070047 public <F extends OFValueType<F>> Match.Builder setExact(
Andreas Wundsambc679f72013-08-01 22:13:09 -070048 MatchField<F> field, F value) {
49 // FIXME yotam - please replace with real implementation
50 return null;
51 }
52
53 @Override
Yotam Harchola8b9bd32013-08-20 11:32:30 -070054 public <F extends OFValueType<F>> Match.Builder setMasked(
Andreas Wundsambc679f72013-08-01 22:13:09 -070055 MatchField<F> field, F value, F mask) {
56 // FIXME yotam - please replace with real implementation
57 return null;
58 }
59
60 @Override
Yotam Harchola8b9bd32013-08-20 11:32:30 -070061 public <F extends OFValueType<F>> Match.Builder setMasked(
Andreas Wundsambc679f72013-08-01 22:13:09 -070062 MatchField<F> field, Masked<F> valueWithMask) {
63 // FIXME yotam - please replace with real implementation
64 return null;
65 }
66
67 @Override
Yotam Harchola8b9bd32013-08-20 11:32:30 -070068 public <F extends OFValueType<F>> Match.Builder wildcard(MatchField<F> field) {
Andreas Wundsambc679f72013-08-01 22:13:09 -070069 // FIXME yotam - please replace with real implementation
70 return null;
71 }