public boolean equals()

in elb/src/main/java/org/jclouds/elb/domain/AttributeMetadata.java [204:216]


   public boolean equals(Object obj) {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (getClass() != obj.getClass())
         return false;
      AttributeMetadata<?> other = AttributeMetadata.class.cast(obj);
      return Objects.equal(this.name, other.name) && Objects.equal(this.type, other.type)
               && Objects.equal(this.rawType, other.rawType) && Objects.equal(this.cardinality, other.cardinality)
               && Objects.equal(this.defaultValue, other.defaultValue)
               && Objects.equal(this.description, other.description);
   }