blob: d0ac3baa993c42e0380a09b4b74b450e0abd3561 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Ray Milkey9fdf1ea2014-10-21 09:48:02 -070019package org.onlab.onos.cli.net;
20
21import org.onlab.packet.Ethernet;
22
23/**
24 * Allowed values for Ethernet types. Used by the CLI completer for
25 * connectivity based intent L2 parameters.
26 */
27public enum EthType {
28 /** ARP. */
29 ARP(Ethernet.TYPE_ARP),
30 /** RARP. */
31 RARP(Ethernet.TYPE_RARP),
32 /** IPV4. */
33 IPV4(Ethernet.TYPE_IPV4),
34 /** LLDP. */
35 LLDP(Ethernet.TYPE_LLDP),
36 /** BSN. */
37 BSN(Ethernet.TYPE_BSN);
38
39 private short value;
40
41 /**
42 * Constructs an EthType with the given value.
43 *
44 * @param value value to use when this EthType is seen.
45 */
46 private EthType(short value) {
47 this.value = value;
48 }
49
50 /**
51 * Gets the value to use for this EthType.
52 *
53 * @return short value to use for this EthType
54 */
55 public short value() {
56 return this.value;
57 }
58}