Switch to Objects.requireNonNull
[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 static java.util.Objects.requireNonNull;
12
13 import com.google.common.annotations.Beta;
14
15 /**
16  * An Item represents an object that probably is only one of it's kind. For example a Nodes object
17  * is only one of a kind. In YANG terms this would probably represent a container.
18  *
19  * @param <T>
20  */
21
22 @Beta
23 public final class Item<T extends TreeNode> extends TreeArgument<T> {
24     private final Class<T> type;
25
26     public Item(final Class<T> type) {
27         this.type = requireNonNull(type);
28     }
29
30     @Override
31     public Class<T> getType() {
32         return type;
33     }
34
35     @Override
36     public String toString() {
37         return type.getName();
38     }
39
40 }