public boolean equals()

in rackspace-cloudbigdata/src/main/java/org/jclouds/rackspace/cloudbigdata/v1/domain/CreateCluster.java [99:108]


   public boolean equals(Object obj) {
      if (this == obj) return true;
      if (obj == null || getClass() != obj.getClass()) return false;
      CreateCluster that = CreateCluster.class.cast(obj);
      return Objects.equal(this.name, that.name) && 
            Objects.equal(this.clusterType, that.clusterType) &&
            Objects.equal(this.flavorId, that.flavorId) &&
            Objects.equal(this.nodeCount, that.nodeCount) &&
            Objects.equal(this.postInitScript, that.postInitScript);
   }