/* * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.dom.codec.generator.impl; import com.google.common.annotations.Beta; import com.google.common.base.Preconditions; /** * Definition of static property for Binding objects *

* This definition consists of *

*/ @Beta public class StaticBindingProperty { private final String name; private final Class type; private final Object value; public StaticBindingProperty(final String name, final Class type, final Object value) { super(); this.name = Preconditions.checkNotNull(name); this.type = Preconditions.checkNotNull(type); this.value = Preconditions.checkNotNull(value); } public String getName() { return this.name; } public Class getType() { return this.type; } public Object getValue() { return this.value; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + this.name.hashCode(); return result; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final StaticBindingProperty other = (StaticBindingProperty) obj; if (!this.name.equals(other.name)) { return false; } return true; } }