public boolean equals()

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


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        TopicSearchCriteriaImpl that = (TopicSearchCriteriaImpl) obj;
        return
                Objects.equals(this.topicName, that.topicName) &&
                Objects.equals(this.minPartitionCount, that.minPartitionCount) &&
                Objects.equals(this.maxPartitionCount, that.maxPartitionCount) &&
                Objects.equals(this.minReplicationFactor, that.minReplicationFactor) &&
                Objects.equals(this.maxReplicationFactor, that.maxReplicationFactor) &&
                Objects.equals(this.minConsumerCount, that.minConsumerCount) &&
                Objects.equals(this.maxConsumerCount, that.maxConsumerCount) &&
                Objects.equals(this.replicationState, that.replicationState) &&
                Objects.equals(this.configString, that.configString) &&
                Objects.equals(this.configMap, that.configMap) &&
                Objects.equals(this.description, that.description);
    }