com.swak.excel.metadata.ReadExcelParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swak-excel-boot-starter Show documentation
Show all versions of swak-excel-boot-starter Show documentation
swak component of excel spring boot starter
The newest version!
package com.swak.excel.metadata;
import lombok.Data;
/**
* ReadExcelParams.java
*
* @author colley.ma
* @since 2.4.0
**/
@Data
public class ReadExcelParams implements java.io.Serializable {
private static final long serialVersionUID = 5939498044910752625L;
private Class>[] groups = new Class>[0];
public static ReadExcelParams newReadParams(Class>... groups) {
ReadExcelParams readerParam = new ReadExcelParams();
readerParam.setGroups(groups);
return readerParam;
}
}