/* * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.mdsal.binding2.generator.util; import com.google.common.annotations.Beta; /** * * Contains constants used in relations with Type. */ @Beta public final class TypeConstants { /** * Name of the class constant which hold list of the regular expression * strings. */ public static final String PATTERN_CONSTANT_NAME = "PATTERN_CONSTANTS"; /** * Creation of new instance is prohibited. */ private TypeConstants() { } }