Comments of source code.
[yangtools.git] / code-generator / binding-generator-util / src / main / java / org / opendaylight / yangtools / binding / generator / util / TypeConstants.java
1 package org.opendaylight.yangtools.binding.generator.util;
2
3 /**
4  * 
5  * Contains constants used in relations with <code>Type</code>.
6  */
7 public final class TypeConstants {
8
9     /**
10      * Name of the class constant which hold list of the regular expression
11      * strings.
12      */
13     public static final String PATTERN_CONSTANT_NAME = "PATTERN_CONSTANTS";
14
15     /**
16      * Creation of new instance is prohibited.
17      */
18     private TypeConstants() {
19     }
20 }