com.alphasystem.docx4j.builder.wml.CTBookmarkBuilder 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.CTBookmark;
import org.docx4j.wml.STDisplacedByCustomXml;
/**
* Fluent API builder for org.docx4j.wml.CTBookmark
.
*
*/
public class CTBookmarkBuilder
extends OpenXmlBuilder
{
/**
* Initialize the underlying object.
*
*/
public CTBookmarkBuilder() {
this(null);
}
/**
* Initialize the builder with given object.
*
* @param object
* the given object
*/
public CTBookmarkBuilder(CTBookmark 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 CTBookmarkBuilder(CTBookmark src, CTBookmark target) {
this(target);
if (src!= null) {
withName(src.getName()).withColFirst(WmlBuilderFactory.cloneBigInteger(src.getColFirst())).withColLast(WmlBuilderFactory.cloneBigInteger(src.getColLast())).withDisplacedByCustomXml(src.getDisplacedByCustomXml()).withId(WmlBuilderFactory.cloneBigInteger(src.getId()));
}
}
protected CTBookmark createObject() {
return WmlBuilderFactory.OBJECT_FACTORY.createCTBookmark();
}
public CTBookmarkBuilder withName(String value) {
if (value!= null) {
object.setName(value);
}
return this;
}
public CTBookmarkBuilder withColFirst(BigInteger value) {
if (value!= null) {
object.setColFirst(value);
}
return this;
}
/**
* Calls setColFirst
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public CTBookmarkBuilder withColFirst(String value) {
if (value!= null) {
object.setColFirst(new BigInteger(value));
}
return this;
}
/**
* Calls setColFirst
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public CTBookmarkBuilder withColFirst(Long value) {
if (value!= null) {
object.setColFirst(BigInteger.valueOf(value));
}
return this;
}
public CTBookmarkBuilder withColLast(BigInteger value) {
if (value!= null) {
object.setColLast(value);
}
return this;
}
/**
* Calls setColLast
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public CTBookmarkBuilder withColLast(String value) {
if (value!= null) {
object.setColLast(new BigInteger(value));
}
return this;
}
/**
* Calls setColLast
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public CTBookmarkBuilder withColLast(Long value) {
if (value!= null) {
object.setColLast(BigInteger.valueOf(value));
}
return this;
}
public CTBookmarkBuilder withDisplacedByCustomXml(STDisplacedByCustomXml value) {
if (value!= null) {
object.setDisplacedByCustomXml(value);
}
return this;
}
public CTBookmarkBuilder withId(BigInteger value) {
if (value!= null) {
object.setId(value);
}
return this;
}
/**
* Calls setId
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public CTBookmarkBuilder withId(String value) {
if (value!= null) {
object.setId(new BigInteger(value));
}
return this;
}
/**
* Calls setId
method.
*
* @param value
* Value to set
* @return
* reference to this
*/
public CTBookmarkBuilder withId(Long value) {
if (value!= null) {
object.setId(BigInteger.valueOf(value));
}
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy