Add BindingTypes.augmentation()
[mdsal.git] / binding / mdsal-binding-generator-util / src / main / java / org / opendaylight / mdsal / binding / model / util / TypeConstants.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.model.util;
9
10 /**
11  * Contains constants used in relations with <code>Type</code>.
12  */
13 public final class TypeConstants {
14
15     /**
16      * Name or prefix (multiple patterns in builder class as composed with '_'
17      * and upper case of the field name) of the class constant which holds the map
18      * of regular expressions that need to be enforced on the string value.
19      * The map is keyed by Pattern-compatible string and values are XSD-compatible
20      * strings.
21      */
22     public static final String PATTERN_CONSTANT_NAME = "PATTERN_CONSTANTS";
23
24     /**
25      * Creation of new instance is prohibited.
26      */
27     private TypeConstants() {
28     }
29 }