public interface TestPatternData extends DataRoot
This class represents the following YANG schema fragment defined in module test-pattern
module test-pattern { yang-version 1.1; namespace urn:test:pattern; prefix pattern; revision 2017-01-01; 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]*; } } } }
Modifier and Type | Method and Description |
---|---|
@Nullable Cont |
getCont() |
@Nullable Cont getCont()
org.opendaylight.yang.gen.v1.urn.test.pattern.rev170101.Cont
cont
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.