Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-util / src / main / java / org / opendaylight / mdsal / binding / javav2 / generator / util / generated / type / builder / ConstantImpl.java
diff --git a/binding2/mdsal-binding2-generator-util/src/main/java/org/opendaylight/mdsal/binding/javav2/generator/util/generated/type/builder/ConstantImpl.java b/binding2/mdsal-binding2-generator-util/src/main/java/org/opendaylight/mdsal/binding/javav2/generator/util/generated/type/builder/ConstantImpl.java
deleted file mode 100644 (file)
index c1658b3..0000000
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * Copyright (c) 2017 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.mdsal.binding.javav2.generator.util.generated.type.builder;
-
-import java.util.Objects;
-import org.opendaylight.mdsal.binding.javav2.model.api.Constant;
-import org.opendaylight.mdsal.binding.javav2.model.api.Type;
-
-final class ConstantImpl implements Constant {
-
-    private final Type definingType;
-    private final Type type;
-    private final String name;
-    private final Object value;
-
-    ConstantImpl(final Type definingType, final Type type, final String name, final Object value) {
-        this.definingType = definingType;
-        this.type = type;
-        this.name = name;
-        this.value = value;
-    }
-
-    @Override
-    public Type getDefiningType() {
-        return definingType;
-    }
-
-    @Override
-    public Type getType() {
-        return type;
-    }
-
-    @Override
-    public String getName() {
-        return name;
-    }
-
-    @Override
-    public Object getValue() {
-        return value;
-    }
-
-    @Override
-    public String toFormattedString() {
-        return type + " " + name + " " + value;
-    }
-
-    @Override
-    public int hashCode() {
-        return Objects.hash(name, type);
-    }
-
-    @Override
-    public boolean equals(final Object obj) {
-        if (this == obj) {
-            return true;
-        }
-        if (obj == null) {
-            return false;
-        }
-        if (getClass() != obj.getClass()) {
-            return false;
-        }
-
-        if (!(obj instanceof ConstantImpl)) {
-            return false;
-        }
-
-        ConstantImpl other = (ConstantImpl) obj;
-        return Objects.equals(name, other.name) && Objects.equals(type, other.type)
-                && Objects.equals(value, other.value);
-    }
-
-    @Override
-    public String toString() {
-        StringBuilder builder = new StringBuilder();
-        builder.append("Constant [type=");
-        builder.append(type);
-        builder.append(", name=");
-        builder.append(name);
-        builder.append(", value=");
-        builder.append(value);
-        if (definingType != null) {
-            builder.append(", definingType=");
-            builder.append(definingType.getPackageName());
-            builder.append(".");
-            builder.append(definingType.getName());
-        } else {
-            builder.append(", definingType= null");
-        }
-        builder.append("]");
-        return builder.toString();
-    }
-}