com.deepoove.poi.data.HyperlinkTextRenderData 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
The newest version!
/*
* Copyright 2014-2024 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 org.apache.poi.xwpf.usermodel.UnderlinePatterns;
import com.deepoove.poi.data.style.Style;
/**
* hyper link text
*
* @author Sayi
*/
public class HyperlinkTextRenderData extends TextRenderData {
private static final long serialVersionUID = 1L;
/**
* link format: http://deepoove.com
* mail format:mailto:[email protected]?subject=poi-tl
* anchor format:anchor:AnchorName
*/
protected String url;
HyperlinkTextRenderData() {
}
public HyperlinkTextRenderData(String text, String url) {
super(text);
this.url = url;
this.style = Style.builder().buildColor("0000FF").buildUnderlinePatterns(UnderlinePatterns.SINGLE).build();
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("[").append(text).append("](").append(url).append(")");
return sb.toString();
}
}