コード例 #1
0
ファイル: TimeValue.java プロジェクト: dschachinger/colibri
 @Override
 public int hashCode() {
   final int PRIME = 31;
   int result = 1;
   result = PRIME * result + ((time == null) ? 0 : time.hashCode());
   result = PRIME * result + ((value == null) ? 0 : value.hashCode());
   return result;
 }
コード例 #2
0
ファイル: TimeValue.java プロジェクト: dschachinger/colibri
 @Override
 public boolean equals(Object obj) {
   if (this == obj) return true;
   if (obj == null) return false;
   if (getClass() != obj.getClass()) return false;
   final TimeValue other = (TimeValue) obj;
   if (time == null) {
     if (other.time != null) return false;
   } else if (!time.equals(other.time)) return false;
   if (value == null) {
     if (other.value != null) return false;
   } else if (!value.equals(other.value)) return false;
   return true;
 }