599789a51745ee3ea0f67052875b53d306a3aeb5
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableUnkeyedListEntryNodeBuilder.java
1 /*
2  * Copyright (c) 2013 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 package org.opendaylight.yangtools.yang.data.impl.schema.builder.impl;
9
10 import java.util.Map;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
14 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
15 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListEntryNode;
16 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeBuilder;
17 import org.opendaylight.yangtools.yang.data.impl.schema.nodes.AbstractImmutableDataContainerNode;
18
19 public class ImmutableUnkeyedListEntryNodeBuilder
20         extends AbstractImmutableDataContainerNodeBuilder<NodeIdentifier, UnkeyedListEntryNode> {
21
22     protected ImmutableUnkeyedListEntryNodeBuilder() {
23
24     }
25
26     protected ImmutableUnkeyedListEntryNodeBuilder(final int sizeHint) {
27         super(sizeHint);
28     }
29
30     protected ImmutableUnkeyedListEntryNodeBuilder(final ImmutableUnkeyedListEntryNode node) {
31         super(node);
32     }
33
34     public static @NonNull DataContainerNodeBuilder<NodeIdentifier, UnkeyedListEntryNode> create() {
35         return new ImmutableUnkeyedListEntryNodeBuilder();
36     }
37
38     public static @NonNull DataContainerNodeBuilder<NodeIdentifier, UnkeyedListEntryNode> create(
39             final int sizeHint) {
40         return new ImmutableUnkeyedListEntryNodeBuilder(sizeHint);
41     }
42
43     public static @NonNull DataContainerNodeBuilder<NodeIdentifier, UnkeyedListEntryNode> create(
44             final UnkeyedListEntryNode node) {
45         if (!(node instanceof ImmutableUnkeyedListEntryNode)) {
46             throw new UnsupportedOperationException(String.format("Cannot initialize from class %s", node.getClass()));
47         }
48         return new ImmutableUnkeyedListEntryNodeBuilder((ImmutableUnkeyedListEntryNode) node);
49     }
50
51     @Override
52     public UnkeyedListEntryNode build() {
53         return new ImmutableUnkeyedListEntryNode(getNodeIdentifier(), buildValue());
54     }
55
56     protected static final class ImmutableUnkeyedListEntryNode
57             extends AbstractImmutableDataContainerNode<NodeIdentifier> implements UnkeyedListEntryNode {
58
59         ImmutableUnkeyedListEntryNode(final NodeIdentifier nodeIdentifier,
60                 final Map<PathArgument, DataContainerChild<? extends PathArgument, ?>> children) {
61             super(children, nodeIdentifier);
62         }
63     }
64 }