com.deepoove.poi.xwpf.XWPFOnOff 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!
package com.deepoove.poi.xwpf;
import org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STOnOff1;
public interface XWPFOnOff {
STOnOff1.Enum ON = STOnOff1.ON;
STOnOff1.Enum OFF = STOnOff1.OFF;
}