|
|
@@ -825,7 +825,7 @@ public class ExcelUtil<T> {
|
|
|
* @param checkValue
|
|
|
* @param inputValueType
|
|
|
* @param colName
|
|
|
- * @return
|
|
|
+ * @return メッセージ
|
|
|
*/
|
|
|
public String checkInputValueType(String checkValue, Excel.InputValueType inputValueType, String colName) {
|
|
|
String messageString = StringUtils.EMPTY;
|
|
|
@@ -919,7 +919,6 @@ public class ExcelUtil<T> {
|
|
|
* @param response 返却データ
|
|
|
* @param list エクスポートデータのコレクション
|
|
|
* @param sheetName シートの名称
|
|
|
- * @return 結果
|
|
|
*/
|
|
|
public void exportExcel(HttpServletResponse response, List<T> list, String sheetName) {
|
|
|
exportExcel(response, list, sheetName, StringUtils.EMPTY);
|
|
|
@@ -932,7 +931,6 @@ public class ExcelUtil<T> {
|
|
|
* @param list エクスポートデータのコレクション
|
|
|
* @param sheetName シートの名称
|
|
|
* @param title タイトル
|
|
|
- * @return 結果
|
|
|
*/
|
|
|
public void exportExcel(HttpServletResponse response, List<T> list, String sheetName, String title) {
|
|
|
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|
|
|
@@ -967,7 +965,6 @@ public class ExcelUtil<T> {
|
|
|
* リストデータソースをExcelシートにインポート
|
|
|
*
|
|
|
* @param sheetName シートの名称
|
|
|
- * @return 結果
|
|
|
*/
|
|
|
public void importTemplateExcel(HttpServletResponse response, String sheetName) {
|
|
|
importTemplateExcel(response, sheetName, StringUtils.EMPTY);
|
|
|
@@ -978,7 +975,6 @@ public class ExcelUtil<T> {
|
|
|
*
|
|
|
* @param sheetName シートの名称
|
|
|
* @param title タイトル
|
|
|
- * @return 結果
|
|
|
*/
|
|
|
public void importTemplateExcel(HttpServletResponse response, String sheetName, String title) {
|
|
|
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|