Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / BitsType.java
-/*\r
-  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
-  *\r
-  * This program and the accompanying materials are made available under the\r
-  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
-  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
-  */\r
-package org.opendaylight.controller.model.util;\r
-\r
-import java.util.Collections;\r
-import java.util.List;\r
-\r
-import org.opendaylight.controller.model.api.type.BitsTypeDefinition;\r
-import org.opendaylight.controller.yang.common.QName;\r
-import org.opendaylight.controller.yang.model.api.SchemaPath;\r
-import org.opendaylight.controller.yang.model.api.Status;\r
-import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;\r
-\r
-\r
-/**\r
- * The <code>default</code> implementation of Bits Type Definition interface.\r
- * \r
- * @see BitsTypeDefinition\r
- */\r
-public class BitsType implements BitsTypeDefinition {\r
-\r
-    private final QName name = BaseTypes.constructQName("bits");\r
-    private final SchemaPath path = BaseTypes.schemaPath(name);\r
-    private final String description = "The bits built-in type represents a bit set.  " +\r
-               "That is, a bits value is a set of flags identified by small integer position " +\r
-               "numbers starting at 0.  Each bit number has an assigned name.";\r
-    \r
-    private final String reference = "https://tools.ietf.org/html/rfc6020#section-9.7";\r
-\r
-    private final List<Bit> bits;\r
-    private String units = "";\r
-\r
-    /**\r
-     * Default constructor. <br>\r
-     * Instantiates Bits type as empty bits list.\r
-     */\r
-    public BitsType() {\r
-        super();\r
-        bits = Collections.emptyList();\r
-    }\r
-\r
-    /**\r
-     * Constructor with explicit definition of bits assigned to\r
-     * BitsType.\r
-     * \r
-     * @param bits\r
-     *            The bits assigned for Bits Type\r
-     */\r
-    public BitsType(final List<Bit> bits) {\r
-        super();\r
-        this.bits = Collections.unmodifiableList(bits);\r
-        this.units = "";\r
-    }\r
-\r
-    /**\r
-     * Constructor with explicit definition of bits assigned to\r
-     * BitsType and Units.\r
-     * <br>\r
-     * The default value of Bits Type is List of bits.\r
-     * \r
-     * @param bits The bits assigned for Bits Type\r
-     * @param units units for bits type\r
-     */\r
-    public BitsType(List<Bit> bits, String units) {\r
-        super();\r
-        this.bits = Collections.unmodifiableList(bits);\r
-        this.units = units;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()\r
-     */\r
-    @Override\r
-    public BitsTypeDefinition getBaseType() {\r
-        return this;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getUnits()\r
-     */\r
-    @Override\r
-    public String getUnits() {\r
-        return units;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()\r
-     */\r
-    @Override\r
-    public Object getDefaultValue() {\r
-        return bits;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getQName()\r
-     */\r
-    @Override\r
-    public QName getQName() {\r
-        return name;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getPath()\r
-     */\r
-    @Override\r
-    public SchemaPath getPath() {\r
-        return path;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getDescription()\r
-     */\r
-    @Override\r
-    public String getDescription() {\r
-        return description;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getReference()\r
-     */\r
-    @Override\r
-    public String getReference() {\r
-        return reference;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getStatus()\r
-     */\r
-    @Override\r
-    public Status getStatus() {\r
-        return Status.CURRENT;\r
-    }\r
-\r
-    @Override\r
-    public List<UnknownSchemaNode> getUnknownSchemaNodes() {\r
-        return Collections.emptyList();\r
-    }\r
-\r
-    @Override\r
-    public List<Bit> getBits() {\r
-        return bits;\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        final int prime = 31;\r
-        int result = 1;\r
-        result = prime * result + ((bits == null) ? 0 : bits.hashCode());\r
-        result = prime * result\r
-                + ((description == null) ? 0 : description.hashCode());\r
-        result = prime * result + ((name == null) ? 0 : name.hashCode());\r
-        result = prime * result + ((path == null) ? 0 : path.hashCode());\r
-        result = prime * result\r
-                + ((reference == null) ? 0 : reference.hashCode());\r
-        result = prime * result + ((units == null) ? 0 : units.hashCode());\r
-        return result;\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if (this == obj) {\r
-            return true;\r
-        }\r
-        if (obj == null) {\r
-            return false;\r
-        }\r
-        if (getClass() != obj.getClass()) {\r
-            return false;\r
-        }\r
-        BitsType other = (BitsType) obj;\r
-        if (bits == null) {\r
-            if (other.bits != null) {\r
-                return false;\r
-            }\r
-        } else if (!bits.equals(other.bits)) {\r
-            return false;\r
-        }\r
-        if (description == null) {\r
-            if (other.description != null) {\r
-                return false;\r
-            }\r
-        } else if (!description.equals(other.description)) {\r
-            return false;\r
-        }\r
-        if (name == null) {\r
-            if (other.name != null) {\r
-                return false;\r
-            }\r
-        } else if (!name.equals(other.name)) {\r
-            return false;\r
-        }\r
-        if (path == null) {\r
-            if (other.path != null) {\r
-                return false;\r
-            }\r
-        } else if (!path.equals(other.path)) {\r
-            return false;\r
-        }\r
-        if (reference == null) {\r
-            if (other.reference != null) {\r
-                return false;\r
-            }\r
-        } else if (!reference.equals(other.reference)) {\r
-            return false;\r
-        }\r
-        if (units == null) {\r
-            if (other.units != null) {\r
-                return false;\r
-            }\r
-        } else if (!units.equals(other.units)) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        StringBuilder builder = new StringBuilder();\r
-        builder.append("BitsType [name=");\r
-        builder.append(name);\r
-        builder.append(", path=");\r
-        builder.append(path);\r
-        builder.append(", description=");\r
-        builder.append(description);\r
-        builder.append(", reference=");\r
-        builder.append(reference);\r
-        builder.append(", bits=");\r
-        builder.append(bits);\r
-        builder.append(", units=");\r
-        builder.append(units);\r
-        builder.append("]");\r
-        return builder.toString();\r
-    }\r
-}\r
+/*
+  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+  *
+  * This program and the accompanying materials are made available under the
+  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+  * and is available at http://www.eclipse.org/legal/epl-v10.html
+  */
+package org.opendaylight.controller.yang.model.util;
+
+import java.util.Collections;
+import java.util.List;
+
+import org.opendaylight.controller.yang.common.QName;
+import org.opendaylight.controller.yang.model.api.SchemaPath;
+import org.opendaylight.controller.yang.model.api.Status;
+import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;
+import org.opendaylight.controller.yang.model.api.type.BitsTypeDefinition;
+
+
+/**
+ * The <code>default</code> implementation of Bits Type Definition interface.
+ * 
+ * @see BitsTypeDefinition
+ */
+public class BitsType implements BitsTypeDefinition {
+
+    private final QName name = BaseTypes.constructQName("bits");
+    private final SchemaPath path = BaseTypes.schemaPath(name);
+    private final String description = "The bits built-in type represents a bit set.  " +
+               "That is, a bits value is a set of flags identified by small integer position " +
+               "numbers starting at 0.  Each bit number has an assigned name.";
+    
+    private final String reference = "https://tools.ietf.org/html/rfc6020#section-9.7";
+
+    private final List<Bit> bits;
+    private String units = "";
+
+    /**
+     * Default constructor. <br>
+     * Instantiates Bits type as empty bits list.
+     */
+    public BitsType() {
+        super();
+        bits = Collections.emptyList();
+    }
+
+    /**
+     * Constructor with explicit definition of bits assigned to
+     * BitsType.
+     * 
+     * @param bits
+     *            The bits assigned for Bits Type
+     */
+    public BitsType(final List<Bit> bits) {
+        super();
+        this.bits = Collections.unmodifiableList(bits);
+        this.units = "";
+    }
+
+    /**
+     * Constructor with explicit definition of bits assigned to
+     * BitsType and Units.
+     * <br>
+     * The default value of Bits Type is List of bits.
+     * 
+     * @param bits The bits assigned for Bits Type
+     * @param units units for bits type
+     */
+    public BitsType(List<Bit> bits, String units) {
+        super();
+        this.bits = Collections.unmodifiableList(bits);
+        this.units = units;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
+     */
+    @Override
+    public BitsTypeDefinition getBaseType() {
+        return this;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getUnits()
+     */
+    @Override
+    public String getUnits() {
+        return units;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()
+     */
+    @Override
+    public Object getDefaultValue() {
+        return bits;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getQName()
+     */
+    @Override
+    public QName getQName() {
+        return name;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getPath()
+     */
+    @Override
+    public SchemaPath getPath() {
+        return path;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getDescription()
+     */
+    @Override
+    public String getDescription() {
+        return description;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getReference()
+     */
+    @Override
+    public String getReference() {
+        return reference;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getStatus()
+     */
+    @Override
+    public Status getStatus() {
+        return Status.CURRENT;
+    }
+
+    @Override
+    public List<UnknownSchemaNode> getUnknownSchemaNodes() {
+        return Collections.emptyList();
+    }
+
+    @Override
+    public List<Bit> getBits() {
+        return bits;
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = 1;
+        result = prime * result + ((bits == null) ? 0 : bits.hashCode());
+        result = prime * result
+                + ((description == null) ? 0 : description.hashCode());
+        result = prime * result + ((name == null) ? 0 : name.hashCode());
+        result = prime * result + ((path == null) ? 0 : path.hashCode());
+        result = prime * result
+                + ((reference == null) ? 0 : reference.hashCode());
+        result = prime * result + ((units == null) ? 0 : units.hashCode());
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj) {
+            return true;
+        }
+        if (obj == null) {
+            return false;
+        }
+        if (getClass() != obj.getClass()) {
+            return false;
+        }
+        BitsType other = (BitsType) obj;
+        if (bits == null) {
+            if (other.bits != null) {
+                return false;
+            }
+        } else if (!bits.equals(other.bits)) {
+            return false;
+        }
+        if (description == null) {
+            if (other.description != null) {
+                return false;
+            }
+        } else if (!description.equals(other.description)) {
+            return false;
+        }
+        if (name == null) {
+            if (other.name != null) {
+                return false;
+            }
+        } else if (!name.equals(other.name)) {
+            return false;
+        }
+        if (path == null) {
+            if (other.path != null) {
+                return false;
+            }
+        } else if (!path.equals(other.path)) {
+            return false;
+        }
+        if (reference == null) {
+            if (other.reference != null) {
+                return false;
+            }
+        } else if (!reference.equals(other.reference)) {
+            return false;
+        }
+        if (units == null) {
+            if (other.units != null) {
+                return false;
+            }
+        } else if (!units.equals(other.units)) {
+            return false;
+        }
+        return true;
+    }
+
+    @Override
+    public String toString() {
+        StringBuilder builder = new StringBuilder();
+        builder.append("BitsType [name=");
+        builder.append(name);
+        builder.append(", path=");
+        builder.append(path);
+        builder.append(", description=");
+        builder.append(description);
+        builder.append(", reference=");
+        builder.append(reference);
+        builder.append(", bits=");
+        builder.append(bits);
+        builder.append(", units=");
+        builder.append(units);
+        builder.append("]");
+        return builder.toString();
+    }
+}