Andreas Wundsam | bc679f7 | 2013-08-01 22:13:09 -0700 | [diff] [blame] | 1 | |
| 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 Harchol | a8b9bd3 | 2013-08-20 11:32:30 -0700 | [diff] [blame] | 47 | public <F extends OFValueType<F>> Match.Builder setExact( |
Andreas Wundsam | bc679f7 | 2013-08-01 22:13:09 -0700 | [diff] [blame] | 48 | MatchField<F> field, F value) { |
| 49 | // FIXME yotam - please replace with real implementation |
| 50 | return null; |
| 51 | } |
| 52 | |
| 53 | @Override |
Yotam Harchol | a8b9bd3 | 2013-08-20 11:32:30 -0700 | [diff] [blame] | 54 | public <F extends OFValueType<F>> Match.Builder setMasked( |
Andreas Wundsam | bc679f7 | 2013-08-01 22:13:09 -0700 | [diff] [blame] | 55 | MatchField<F> field, F value, F mask) { |
| 56 | // FIXME yotam - please replace with real implementation |
| 57 | return null; |
| 58 | } |
| 59 | |
| 60 | @Override |
Yotam Harchol | a8b9bd3 | 2013-08-20 11:32:30 -0700 | [diff] [blame] | 61 | public <F extends OFValueType<F>> Match.Builder setMasked( |
Andreas Wundsam | bc679f7 | 2013-08-01 22:13:09 -0700 | [diff] [blame] | 62 | MatchField<F> field, Masked<F> valueWithMask) { |
| 63 | // FIXME yotam - please replace with real implementation |
| 64 | return null; |
| 65 | } |
| 66 | |
| 67 | @Override |
Yotam Harchol | a8b9bd3 | 2013-08-20 11:32:30 -0700 | [diff] [blame] | 68 | public <F extends OFValueType<F>> Match.Builder wildcard(MatchField<F> field) { |
Andreas Wundsam | bc679f7 | 2013-08-01 22:13:09 -0700 | [diff] [blame] | 69 | // FIXME yotam - please replace with real implementation |
| 70 | return null; |
| 71 | } |