/******************************************************************************* * Copyright (c) 2015 - 2020 MINRES Technologies GmbH 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 * * Contributors: * MINRES Technologies GmbH - initial API and implementation *******************************************************************************/ package com.minres.scviewer.database; import java.io.Serializable; /** * The Class RelationType. */ public class RelationType implements Serializable { /** The Constant serialVersionUID. */ private static final long serialVersionUID = 6394859077558971735L; /** The name. */ private String name; /** * Instantiates a new relation type. * * @param name the name */ RelationType(String name) { super(); this.name = name; } /** * Gets the name. * * @return the name */ public String getName() { return name; } /** * Sets the name. * * @param name the new name */ public void setName(String name) { this.name = name; } /** * To string. * * @return the string */ public String toString() { return name; } /** * Hash code. * * @return the int */ @Override public int hashCode() { return name.hashCode(); } /** * Equals. * * @param obj the obj * @return true, if successful */ @Override public boolean equals(Object obj) { if (obj instanceof RelationType) return name.equals(((RelationType) obj).name); else return false; } }