Pair.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools;
  19. import java.io.Serializable;
  20. /**
  21.  * Represents a pair of values.
  22.  * 
  23.  * @author Frz
  24.  * @since Revision 333
  25.  * @version 1.0
  26.  * 
  27.  * @param <E> The type of the left value.
  28.  * @param <F> The type of the right value.
  29.  */
  30. public class Pair<E, F> implements Serializable {
  31. static final long serialVersionUID = 9179541993413738569L;
  32. private E left;
  33. private F right;
  34. /**
  35.  * Class constructor - pairs two objects together.
  36.  * 
  37.  * @param left The left object.
  38.  * @param right The right object.
  39.  */
  40. public Pair(E left, F right) {
  41. this.left = left;
  42. this.right = right;
  43. }
  44. /**
  45.  * Gets the left value.
  46.  * 
  47.  * @return The left value.
  48.  */
  49. public E getLeft() {
  50. return left;
  51. }
  52. /**
  53.  * Gets the right value.
  54.  * 
  55.  * @return The right value.
  56.  */
  57. public F getRight() {
  58. return right;
  59. }
  60. /**
  61.  * Turns the pair into a string.
  62.  * 
  63.  * @return Each value of the pair as a string joined by a colon.
  64.  */
  65. @Override
  66. public String toString() {
  67. return left.toString() + ":" + right.toString();
  68. }
  69. /**
  70.  * Gets the hash code of this pair.
  71.  */
  72. @Override
  73. public int hashCode() {
  74. final int prime = 31;
  75. int result = 1;
  76. result = prime * result + ((left == null) ? 0 : left.hashCode());
  77. result = prime * result + ((right == null) ? 0 : right.hashCode());
  78. return result;
  79. }
  80. /**
  81.  * Checks to see if two pairs are equal.
  82.  */
  83. @SuppressWarnings("unchecked")
  84. @Override
  85. public boolean equals(Object obj) {
  86. if (this == obj)
  87. return true;
  88. if (obj == null)
  89. return false;
  90. if (getClass() != obj.getClass())
  91. return false;
  92. final Pair other = (Pair) obj;
  93. if (left == null) {
  94. if (other.left != null)
  95. return false;
  96. } else if (!left.equals(other.left))
  97. return false;
  98. if (right == null) {
  99. if (other.right != null)
  100. return false;
  101. } else if (!right.equals(other.right))
  102. return false;
  103. return true;
  104. }
  105. }