3faeace1ec12941fcd21e6e2b7942b078705abc1
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseBitsType.java
1 /*
2  * Copyright (c) 2015 Pantheon Technologies s.r.o. 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.model.util.type;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Collection;
12 import java.util.List;
13 import javax.annotation.Nonnull;
14 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
15 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
16 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition;
17
18 final class BaseBitsType extends AbstractBaseType<BitsTypeDefinition> implements BitsTypeDefinition {
19     private final List<Bit> bits;
20
21     BaseBitsType(final SchemaPath path, final List<UnknownSchemaNode> unknownSchemaNodes, final Collection<Bit> bits) {
22         super(path, unknownSchemaNodes);
23         this.bits = ImmutableList.copyOf(bits);
24     }
25
26     @Nonnull
27     @Override
28     public List<Bit> getBits() {
29         return bits;
30     }
31
32     @Override
33     public int hashCode() {
34         return BitsTypeDefinition.hashCode(this);
35     }
36
37     @Override
38     public boolean equals(final Object obj) {
39         return BitsTypeDefinition.equals(this, obj);
40     }
41
42     @Override
43     public String toString() {
44         return BitsTypeDefinition.toString(this);
45     }
46 }