02d58842601945cdb3b61ded8c878ecbef5bbf68
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / ValueAware.java
1 /*
2  * Copyright (c) 2019 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 import org.eclipse.jdt.annotation.NonNull;
12
13 /**
14  * Simple interface for reuse with BindingObjects which expose a single value in some representation. This interface
15  * is not meant to be directly implemented.
16  *
17  * @param <T> value type
18  */
19 @Beta
20 public interface ValueAware<T> {
21     /**
22      * Return the value associated with this object.
23      *
24      * @return This object's value.
25      */
26     @NonNull T getValue();
27 }