• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • utils
  • yangutils
  • src
  • test
  • resources
  • ValueExplicitAndAutoDuplication.yang
  • Gaurav Agrawal's avatar
    [ONOS-3897] Yang Listener for Enumeration Data Type · 9c512e0e ...
    9c512e0e
    Change-Id: If257c73da8fe2dcc2f4111f103967cfcdd7fa273
    Gaurav Agrawal authored 2016-02-24 23:21:26 +0000
ValueExplicitAndAutoDuplication.yang 265 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
module Test {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;
    leaf speed {
        type enumeration {
          enum 10m {
	     value 10;
          }
          enum 100m;
          enum auto {
	     value 11;
          }
        }
    }
}