public class CardEl extends Card implements Element { public boolean elEquals(Element other) { return other instanceof CardEl && this.sameRankAs((CardEl) other) && this.sameSuitAs((CardEl) other) ; } }