public interface Cont extends ChildOf<TestPatternData>, Augmentable<Cont>
This class represents the following YANG schema fragment defined in module test-pattern
 container cont {
   leaf test {
     type string {
       pattern [a-zA-Z_][a-zA-Z0-9\-_.]*;
       pattern [xX][mM][lL].*;
     }
   }
   leaf test2 {
     type string {
       pattern [0-9]*;
     }
   }
   leaf-list test3 {
     type string {
       pattern [a-zA-Z_]*;
       pattern [xX][mM][lL].* {
         modifier invert-match;
       }
     }
   }
   leaf-list test4 {
     type string {
       pattern [a-z]*;
     }
   }
 }
 The schema path to identify an instance is
 test-pattern/cont
 To create instances of this class use ContBuilder.
ContBuilder| Modifier and Type | Field and Description | 
|---|---|
| static org.opendaylight.yangtools.yang.common.QName | QNAME | 
| Modifier and Type | Method and Description | 
|---|---|
| @Nullable String | getTest() | 
| @Nullable String | getTest2() | 
| @Nullable List<String> | getTest3() | 
| @Nullable List<String> | getTest4() | 
getImplementedInterfaceaugmentationCopyright © 2019 OpenDaylight. All rights reserved.