/*     */ public boolean equals(Object o) /*     */ {
   /* 149 */ if (this == o) return true;
   /* 150 */ if (!(o instanceof SpanFirstQuery)) return false;
   /*     */
   /* 152 */ SpanFirstQuery other = (SpanFirstQuery) o;
   /* 153 */ return (this.end == other.end)
       && (this.match.equals(other.match))
       && (getBoost() == other.getBoost());
   /*     */ }