public boolean equals()

in src/main/java/com/netflix/imflibrary/J2KHeaderParameters.java [342:359]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        J2KHeaderParameters that = (J2KHeaderParameters) o;
        return Objects.equals(rsiz, that.rsiz) &&
                Objects.equals(xsiz, that.xsiz) &&
                Objects.equals(ysiz, that.ysiz) &&
                Objects.equals(xosiz, that.xosiz) &&
                Objects.equals(yosiz, that.yosiz) &&
                Objects.equals(xtsiz, that.xtsiz) &&
                Objects.equals(ytsiz, that.ytsiz) &&
                Objects.equals(xtosiz, that.xtosiz) &&
                Objects.equals(ytosiz, that.ytosiz) &&
                Arrays.equals(csiz, that.csiz) &&
                cod.equals(that.cod) &&
                qcd.equals(that.qcd) &&
                cap.equals(that.cap);
    }