/** * このオブジェクトのハッシュ値を返す。 * * @return このオブジェクトのハッシュ値 * @see java.lang.Object#hashCode() */ @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + kind.hashCode(); result = prime * result + values.hashCode(); return result; }
/** * このオブジェクトとほかのオブジェクトを比較し、同値性を返す。 * * @param obj 比較するオブジェクト * @return 同値性 * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Sequence other = (Sequence) obj; if (kind.equals(other.kind) == false) { return false; } if (values.equals(other.values) == false) { return false; } return true; }