blob: 58afcd0e8ad39b6b6b2880fbfcc641133b499683 [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
47 public <F extends OFValueType<F>> MatchBuilder setExact(
48 MatchField<F> field, F value) {
49 // FIXME yotam - please replace with real implementation
50 return null;
51 }
52
53 @Override
54 public <F extends OFValueType<F>> MatchBuilder setMasked(
55 MatchField<F> field, F value, F mask) {
56 // FIXME yotam - please replace with real implementation
57 return null;
58 }
59
60 @Override
61 public <F extends OFValueType<F>> MatchBuilder setMasked(
62 MatchField<F> field, Masked<F> valueWithMask) {
63 // FIXME yotam - please replace with real implementation
64 return null;
65 }
66
67 @Override
68 public <F extends OFValueType<F>> MatchBuilder wildcard(MatchField<F> field) {
69 // FIXME yotam - please replace with real implementation
70 return null;
71 }
72
73 @Override
74 public Match getMatch() {
75 // FIXME yotam - please replace with real implementation
76 return null;
77 }