1 package org.onosproject.openflow.controller;
4 * Port description property types (OFPPDPT enums) in OF 1.3 <.
6 public enum PortDescPropertyType {
7 ETHERNET(0), /* Ethernet port */
8 OPTICAL(1), /* Optical port */
9 OPTICAL_TRANSPORT(2), /* OF1.3 Optical transport extension */
10 PIPELINE_INPUT(2), /* Ingress pipeline */
11 PIPELINE_OUTPUT(3), /* Egress pipeline */
12 RECIRCULATE(4), /* Recirculation */
13 EXPERIMENTER(0xffff); /* Experimenter-implemented */
15 private final int value;
17 PortDescPropertyType(int v) {
21 public int valueOf() {