Beispiel #1
0
 /**
  * This method compares two objects. If the given Object is a {@link GUID}, the stored GUID values
  * are compared. <br>
  *
  * @see java.lang.Object#equals(java.lang.Object)
  */
 @Override
 public boolean equals(final Object obj) {
   boolean result = false;
   if (obj instanceof GUID) {
     final GUID other = (GUID) obj;
     result = Arrays.equals(this.getGUID(), other.getGUID());
   }
   return result;
 }