blob: 03e84dd8288efa32a12c62342d97d731ddd23df5 [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001package org.projectfloodlight.openflow.types;
2
3
4
5
6public interface OFValueType<T extends OFValueType<T>> extends Comparable<T>, PrimitiveSinkable {
7 public int getLength();
8
9 public T applyMask(T mask);
10
11}