編集の要約なし
編集の要約なし
3行目: 3行目:
I enable a good hashCode method to be built for any class.
I enable a good hashCode method to be built for any class.


==Methods==
* reflectionHashCode - 完成されたハッシュ値を生成
==Exemples==
  public class Bank {
  public class Bank {
     return HashCodeBuilder.reflectionHashCode(this);
     return HashCodeBuilder.reflectionHashCode(this);
  }
  }

2019年7月2日 (火) 21:03時点における版

commons.lang.HashCodeBuilder [1]

I enable a good hashCode method to be built for any class.

Methods

  • reflectionHashCode - 完成されたハッシュ値を生成

Exemples

public class Bank {
    return HashCodeBuilder.reflectionHashCode(this);
}