Binding v2 runtime - adapters - impl - operations invoker
[mdsal.git] / binding2 / mdsal-binding2-spec / src / main / java / org / opendaylight / mdsal / binding / javav2 / spec / base / Item.java
1 /*
2  * Copyright (c) 2017 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
9 package org.opendaylight.mdsal.binding.javav2.spec.base;
10
11 import com.google.common.annotations.Beta;
12 import com.google.common.base.Preconditions;
13
14 /**
15  * An Item represents an object that probably is only one of it's kind. For example a Nodes object
16  * is only one of a kind. In YANG terms this would probably represent a container.
17  *
18  * @param <T>
19  */
20
21 @Beta
22 public final class Item<T extends TreeNode> extends TreeArgument<T> {
23     private final Class<T> type;
24
25     public Item(final Class<T> type) {
26         this.type = Preconditions.checkNotNull(type);
27     }
28
29     @Override
30     public Class<T> getType() {
31         return type;
32     }
33
34     @Override
35     public String toString() {
36         return type.getName();
37     }
38
39 }