Populate yang-parser-api
[yangtools.git] / yang / yang-parser-api / src / main / java / org / opendaylight / yangtools / yang / model / parser / api / YangParserFactory.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.yangtools.yang.model.parser.api;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Collection;
12 import org.opendaylight.yangtools.yang.model.repo.api.StatementParserMode;
13
14 /**
15  * Basic entry point into a YANG parser implementation.
16  *
17  * @author Robert Varga
18  */
19 @Beta
20 public interface YangParserFactory {
21     /**
22      * Return enumeration of {@link StatementParserMode}s supported by this factory.
23      *
24      * @return Enumeration of supported schema source representations.
25      */
26     Collection<StatementParserMode> supportedParserModes();
27
28     /**
29      * Create a {@link YangParser} instance operating in default import resolution mode.
30      *
31      * @return A new {@link YangParser} instance
32      */
33     default YangParser createParser() {
34         return createParser(StatementParserMode.DEFAULT_MODE);
35     }
36
37     /**
38      * Create a {@link YangParser} instance operating in specified import resolution mode.
39      *
40      * @param parserMode Requested parser mode, may not be null.
41      * @return A new {@link YangParser} instance
42      * @throws NullPointerException if parser mode is null
43      * @throws IllegalArgumentException if specified parser mode is not supported
44      */
45     YangParser createParser(StatementParserMode parserMode);
46 }