@Override
  public boolean equals(Object obj) {
    if (this == obj) return true;
    if (obj == null) return false;
    if (getClass() != obj.getClass()) return false;
    OFMatchV3Ver14 other = (OFMatchV3Ver14) obj;

    if (oxmList == null) {
      if (other.oxmList != null) return false;
    } else if (!oxmList.equals(other.oxmList)) return false;
    return true;
  }