2 * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
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
9 package org.opendaylight.mdsal.binding2.spec;
11 import com.google.common.annotations.Beta;
12 import com.google.common.base.Preconditions;
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.
22 public final class Item<T extends TreeNode> extends TreeArgument<T> {
23 private final Class<T> type;
25 public Item(final Class<T> type) {
26 this.type = Preconditions.checkNotNull(type);
30 public Class<T> getType() {
35 public String toString() {
36 return type.getName();