com.deepoove.poi.data.Rows Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poi-tl Show documentation
Show all versions of poi-tl Show documentation
Generate word(docx) with template
/*
* Copyright 2014-2020 Sayi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.deepoove.poi.data;
import java.util.Arrays;
import org.apache.poi.xwpf.usermodel.ParagraphAlignment;
import org.apache.poi.xwpf.usermodel.XWPFTableCell.XWPFVertAlign;
import com.deepoove.poi.data.style.CellStyle;
import com.deepoove.poi.data.style.ParagraphStyle;
import com.deepoove.poi.data.style.RowStyle;
import com.deepoove.poi.data.style.Style;
import com.deepoove.poi.util.UnitUtils;
/**
* Factory method to create {@link RowRenderData}
*
* @author Sayi
*
*/
public class Rows {
private Rows() {
}
public static RowBuilder of() {
return new RowBuilder();
}
public static RowBuilder of(CellRenderData... cell) {
RowBuilder inst = of();
if (null != cell) {
Arrays.stream(cell).forEach(inst::addCell);
}
return inst;
}
public static RowBuilder of(String... cell) {
RowBuilder inst = of();
if (null != cell) {
Arrays.stream(cell).map(text -> {
return Cells.of(text).create();
}).forEach(inst::addCell);
}
return inst;
}
public static RowBuilder of(TextRenderData... cell) {
RowBuilder inst = of();
if (null != cell) {
Arrays.stream(cell).map(text -> {
return Cells.of(text).create();
}).forEach(inst::addCell);
}
return inst;
}
public static RowRenderData create(String... cell) {
return of(cell).create();
}
public static RowRenderData create(CellRenderData... cell) {
return of(cell).create();
}
/**
* Builder to build {@link RowRenderData}
*
*/
public static class RowBuilder implements RenderDataBuilder {
private RowRenderData data;
private RowBuilder() {
data = new RowRenderData();
}
public RowBuilder bgColor(String color) {
CellStyle defaultCellStyle = getDefaultCellStyle();
defaultCellStyle.setBackgroundColor(color);
return this;
}
public RowBuilder center() {
verticalCenter();
horizontalCenter();
return this;
}
public RowBuilder verticalCenter() {
CellStyle defaultCellStyle = getDefaultCellStyle();
defaultCellStyle.setVertAlign(XWPFVertAlign.CENTER);
return this;
}
public RowBuilder horizontalCenter() {
ParagraphStyle defaultParaStyle = getDefaultParagraphStyle();
defaultParaStyle.setAlign(ParagraphAlignment.CENTER);
return this;
}
public RowBuilder rowHeight(double cm) {
RowStyle rowStyle = getRowStyle();
rowStyle.setHeight(UnitUtils.cm2Twips(cm));
return this;
}
public RowBuilder rowExactHeight(double cm) {
RowStyle rowStyle = getRowStyle();
rowStyle.setHeight(UnitUtils.cm2Twips(cm));
rowStyle.setHeightRule("exact");
return this;
}
public RowBuilder rowAtleastHeight(double cm) {
RowStyle rowStyle = getRowStyle();
rowStyle.setHeight(UnitUtils.cm2Twips(cm));
rowStyle.setHeightRule("atleast");
return this;
}
public RowBuilder addCell(CellRenderData cell) {
data.addCell(cell);
return this;
}
public RowBuilder textColor(String color) {
Style style = getDefaultTextStyle();
style.setColor(color);
return this;
}
public RowBuilder textBold() {
Style style = getDefaultTextStyle();
style.setBold(true);
return this;
}
public RowBuilder textFontSize(int fontSize) {
Style style = getDefaultTextStyle();
style.setFontSize(fontSize);
return this;
}
public RowBuilder textFontFamily(String fontFamily) {
Style style = getDefaultTextStyle();
style.setFontFamily(fontFamily);
return this;
}
private CellStyle getDefaultCellStyle() {
RowStyle rowStyle = getRowStyle();
CellStyle defaultCellStyle = rowStyle.getDefaultCellStyle();
if (null == defaultCellStyle) {
defaultCellStyle = new CellStyle();
rowStyle.setDefaultCellStyle(defaultCellStyle);
}
return defaultCellStyle;
}
private Style getDefaultTextStyle() {
ParagraphStyle defaultParagraphStyle = getDefaultParagraphStyle();
Style defaultTextStyle = defaultParagraphStyle.getDefaultTextStyle();
if (null == defaultTextStyle) {
defaultTextStyle = Style.builder().build();
defaultParagraphStyle.setDefaultTextStyle(defaultTextStyle);
}
return defaultTextStyle;
}
private ParagraphStyle getDefaultParagraphStyle() {
CellStyle cellStyle = getDefaultCellStyle();
ParagraphStyle defaultParagraphStyle = cellStyle.getDefaultParagraphStyle();
if (null == defaultParagraphStyle) {
defaultParagraphStyle = ParagraphStyle.builder().build();
cellStyle.setDefaultParagraphStyle(defaultParagraphStyle);
}
return defaultParagraphStyle;
}
private RowStyle getRowStyle() {
RowStyle rowStyle = data.getRowStyle();
if (null == rowStyle) {
rowStyle = new RowStyle();
data.setRowStyle(rowStyle);
}
return rowStyle;
}
@Override
public RowRenderData create() {
return data;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy