28e7bdbd6b4b0103929bc7770a7a1010d797d469
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / util / U16.java
1 package org.openflow.codec.util;
2
3 public class U16 {
4     public static int f(short i) {
5         return (int) i & 0xffff;
6     }
7
8     public static short t(int l) {
9         return (short) l;
10     }
11 }