971c887317fe8297962b99e8902f185c338ac133
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / ScalarTypeObject.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, 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.binding;
9
10 import com.google.common.annotations.Beta;
11
12 /**
13  * A {@link TypeObject} that encapsulates an immutable native type. These are generated as YANG Binding type captures,
14  * such as those implied by {@code typedef} and parameterized {@code type} statements.
15  */
16 @Beta
17 public non-sealed interface ScalarTypeObject<T> extends TypeObject, ValueAware<T> {
18
19 }