com.alphasystem.docx4j.builder.wml.TblGridColBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-xml-builder Show documentation
Show all versions of open-xml-builder Show documentation
Alpha system commons library
package com.alphasystem.docx4j.builder.wml;
import java.math.BigInteger;
import com.alphasystem.docx4j.builder.OpenXmlBuilder;
import org.docx4j.wml.TblGridCol;
/**
* Fluent API builder for org.docx4j.wml.TblGridCol
.
*
*/
public class TblGridColBuilder
extends OpenXmlBuilder
{
/**
* Initialize the underlying object.
*
*/
public TblGridColBuilder() {
this(null);
}
/**
* Initialize the builder with given object.
*
* @param object
* the given object
*/
public TblGridColBuilder(TblGridCol object) {
super(object);
}
/**
* Copies values fom src
into target
. Values of target
will be overridden by the values from src
.
*
* @param src
* source object
* @param target
* target object
*/
public TblGridColBuilder(TblGridCol src, TblGridCol target) {
this(target);
if (src!= null) {
withW(WmlBuilderFactory.cloneBigInteger(src.getW()));
}
}
protected TblGridCol createObject() {
return WmlBuilderFactory.OBJECT_FACTORY.createTblGridCol();
}
public TblGridColBuilder withW(BigInteger value) {
if (value!= null) {
object.setW(value);
}
return this;
}
/**
* Calls setW
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public TblGridColBuilder withW(String value) {
if (value!= null) {
object.setW(new BigInteger(value));
}
return this;
}
/**
* Calls setW
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public TblGridColBuilder withW(Long value) {
if (value!= null) {
object.setW(BigInteger.valueOf(value));
}
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy