
net.technearts.Member Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marxls Show documentation
Show all versions of marxls Show documentation
net.technearts - object/excel mapping
The newest version!
package net.technearts;
import static org.apache.commons.lang3.StringUtils.isNotBlank;
import lombok.Data;
@Data
public class Member {
private String title;
private String column;
private String converter;
private String property;
private String mappedBy;
private boolean mapped = true;
public boolean isTitleBased() {
return isNotBlank(title);
}
public boolean isReferenceBased() {
return isNotBlank(title) || isNotBlank(column);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy