public boolean equals()

in commons/src/main/java/com/epam/eco/kafkamanager/ConsumerGroupInfo.java [192:212]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || obj.getClass() != this.getClass()) {
            return false;
        }
        ConsumerGroupInfo that = (ConsumerGroupInfo)obj;
        return
                Objects.equals(this.name, that.name) &&
                Objects.equals(this.coordinator, that.coordinator) &&
                Objects.equals(this.state, that.state) &&
                Objects.equals(this.protocolType, that.protocolType) &&
                Objects.equals(this.partitionAssignor, that.partitionAssignor) &&
                Objects.equals(this.members, that.members) &&
                Objects.equals(this.topicNames, that.topicNames) &&
                Objects.equals(this.offsetsAndMetadata, that.offsetsAndMetadata) &&
                Objects.equals(this.offsetTimeSeries, that.offsetTimeSeries) &&
                Objects.equals(this.storageType, that.storageType) &&
                Objects.equals(this.metadata, that.metadata);
    }