Skip to content

All cells are nulls if setter returns anything but void #47

Open
@YaroValentine

Description

@YaroValentine

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;**
    }
}

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions