public boolean equals()

in src/main/java/com/epam/eco/commons/avro/modification/ChangeSchemaFieldNamesCase.java [161:174]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || obj.getClass() != this.getClass()) {
            return false;
        }

        ChangeSchemaFieldNamesCase that = (ChangeSchemaFieldNamesCase)obj;
        return
                Objects.equals(this.caze, that.caze) &&
                Objects.equals(this.includeRegexps, that.includeRegexps) &&
                Objects.equals(this.excludeRegexps, that.excludeRegexps);
    }