/** * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package bots.mctsbot.common.elements.table; import java.io.Serializable; import javax.xml.bind.annotation.XmlValue; /** * A class to represent table ids. * */ public class TableId implements Serializable { private static final long serialVersionUID = -7208506804565810922L; @XmlValue private final long tableId; public TableId() { this(0); } public TableId(long tableId) { this.tableId = tableId; } public long getId() { return tableId; } @Override public String toString() { return "#" + Long.toString(tableId); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + (int) (tableId ^ (tableId >>> 32)); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; final TableId other = (TableId) obj; if (tableId != other.tableId) return false; return true; } }