• 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
  • ValueStatementWithQuotes.yang
  • Vidyashree Rama's avatar
    YANG sub module linking + unsupported yang construct + defect fix · 1db1556b ...
    1db1556b
    Change-Id: I224c8c14ee2111f6844278cb540c48651544f59b
    Vidyashree Rama authored 2016-05-19 20:58:28 +0000
ValueStatementWithQuotes.yang 303 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
module Test {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;
    leaf speed {
        type enumeration {
          enum 10m {
	     value "10";
          }
          enum 100m {
	     value "100";
          }
          enum auto {
	     value "1000";
          }
        }
    }
}