The following code will read rows and cells but will not map them to the class if setCaseId returns link to itself. ``` @Sheet public class **Table** { @SheetColumn("Case ID") private String caseId; public String getCaseId() { return caseId; } public **Table** **setCaseId**(String caseId) { this.caseId = caseId; **return this;** } } ```