public boolean equals()

in sdk/appcenter/src/main/java/com/microsoft/appcenter/ingestion/models/one/CommonSchemaLog.java [321:337]


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

        CommonSchemaLog that = (CommonSchemaLog) o;

        if (ver != null ? !ver.equals(that.ver) : that.ver != null) return false;
        if (name != null ? !name.equals(that.name) : that.name != null) return false;
        if (popSample != null ? !popSample.equals(that.popSample) : that.popSample != null)
            return false;
        if (iKey != null ? !iKey.equals(that.iKey) : that.iKey != null) return false;
        if (flags != null ? !flags.equals(that.flags) : that.flags != null) return false;
        if (cV != null ? !cV.equals(that.cV) : that.cV != null) return false;
        if (ext != null ? !ext.equals(that.ext) : that.ext != null) return false;
        return data != null ? data.equals(that.data) : that.data == null;
    }