f0068ece7896f4dada06183990b33b13d4446657
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableLeafSetEntryNodeBuilder.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 static com.google.common.base.Preconditions.checkArgument;
11
12 import java.util.Objects;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
15 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
16 import org.opendaylight.yangtools.yang.data.impl.schema.nodes.AbstractImmutableNormalizedSimpleValueNode;
17
18 public class ImmutableLeafSetEntryNodeBuilder<T>
19         extends AbstractImmutableNormalizedNodeBuilder<NodeWithValue, T, LeafSetEntryNode<T>> {
20
21     public static <T> @NonNull ImmutableLeafSetEntryNodeBuilder<T> create() {
22         return new ImmutableLeafSetEntryNodeBuilder<>();
23     }
24
25     @Override
26     public LeafSetEntryNode<T> build() {
27         return new ImmutableLeafSetEntryNode<>(getNodeIdentifier(), getValue());
28     }
29
30     private static final class ImmutableLeafSetEntryNode<T>
31             extends AbstractImmutableNormalizedSimpleValueNode<NodeWithValue, T> implements LeafSetEntryNode<T> {
32
33         ImmutableLeafSetEntryNode(final NodeWithValue nodeIdentifier, final T value) {
34             super(nodeIdentifier, value);
35             checkArgument(Objects.deepEquals(nodeIdentifier.getValue(), value),
36                     "Node identifier contains different value: %s than value itself: %s", nodeIdentifier, value);
37         }
38     }
39 }