• 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
  • EnumTranslator.yang
  • Bharat saraswal's avatar
    [ONOS-4411,ONOS-4413,ONOS-4526] Yang Enumeration Translator and Defect fixes. · c0e04846 ...
    c0e04846
    Change-Id: Ie5b6b5d6d6df283a57ae06b1979f0d03022f3baf
    Bharat saraswal authored 2016-05-17 18:18:06 +0000
EnumTranslator.yang 286 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module Sfc {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;
    leaf test{
        type string;
    }
    leaf myenum {
      type enumeration {
         enum zero;
         enum one;
         enum seven {
              value 7;
             }
         }
     }
}