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 | } |
Rob Vaterlaus | 934b4ad | 2013-11-12 10:08:59 -0800 | [diff] [blame] | 45 | |
| 46 | @Override |
| 47 | public Iterable<MatchField<?>> getMatchFields() { |
| 48 | throw new UnsupportedOperationException(); |
| 49 | } |