All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xlsx4j.sml.CTQueryTable Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 6.1.2
Show newest version
/*
 *  Copyright 2010, Plutext Pty Ltd.
 *   
 *  This file is part of docx4j.

    docx4j is 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 org.xlsx4j.sml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CT_QueryTable complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CT_QueryTable">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="queryTableRefresh" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_QueryTableRefresh" minOccurs="0"/>
 *         <element name="extLst" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ExtensionList" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}AG_AutoFormat"/>
 *       <attribute name="name" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Xstring" />
 *       <attribute name="headers" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *       <attribute name="rowNumbers" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="disableRefresh" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="backgroundRefresh" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *       <attribute name="firstBackgroundRefresh" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="refreshOnLoad" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="growShrinkType" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_GrowShrinkType" default="insertDelete" />
 *       <attribute name="fillFormulas" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="removeDataOnSave" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="disableEdit" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="preserveFormatting" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *       <attribute name="adjustColumnWidth" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *       <attribute name="intermediate" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="connectionId" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_QueryTable", propOrder = { "queryTableRefresh", "extLst" }) public class CTQueryTable { protected CTQueryTableRefresh queryTableRefresh; protected CTExtensionList extLst; @XmlAttribute(required = true) protected String name; @XmlAttribute protected Boolean headers; @XmlAttribute protected Boolean rowNumbers; @XmlAttribute protected Boolean disableRefresh; @XmlAttribute protected Boolean backgroundRefresh; @XmlAttribute protected Boolean firstBackgroundRefresh; @XmlAttribute protected Boolean refreshOnLoad; @XmlAttribute protected STGrowShrinkType growShrinkType; @XmlAttribute protected Boolean fillFormulas; @XmlAttribute protected Boolean removeDataOnSave; @XmlAttribute protected Boolean disableEdit; @XmlAttribute protected Boolean preserveFormatting; @XmlAttribute protected Boolean adjustColumnWidth; @XmlAttribute protected Boolean intermediate; @XmlAttribute(required = true) @XmlSchemaType(name = "unsignedInt") protected long connectionId; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long autoFormatId; @XmlAttribute protected Boolean applyNumberFormats; @XmlAttribute protected Boolean applyBorderFormats; @XmlAttribute protected Boolean applyFontFormats; @XmlAttribute protected Boolean applyPatternFormats; @XmlAttribute protected Boolean applyAlignmentFormats; @XmlAttribute protected Boolean applyWidthHeightFormats; /** * Gets the value of the queryTableRefresh property. * * @return * possible object is * {@link CTQueryTableRefresh } * */ public CTQueryTableRefresh getQueryTableRefresh() { return queryTableRefresh; } /** * Sets the value of the queryTableRefresh property. * * @param value * allowed object is * {@link CTQueryTableRefresh } * */ public void setQueryTableRefresh(CTQueryTableRefresh value) { this.queryTableRefresh = value; } /** * Gets the value of the extLst property. * * @return * possible object is * {@link CTExtensionList } * */ public CTExtensionList getExtLst() { return extLst; } /** * Sets the value of the extLst property. * * @param value * allowed object is * {@link CTExtensionList } * */ public void setExtLst(CTExtensionList value) { this.extLst = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the headers property. * * @return * possible object is * {@link Boolean } * */ public boolean isHeaders() { if (headers == null) { return true; } else { return headers; } } /** * Sets the value of the headers property. * * @param value * allowed object is * {@link Boolean } * */ public void setHeaders(Boolean value) { this.headers = value; } /** * Gets the value of the rowNumbers property. * * @return * possible object is * {@link Boolean } * */ public boolean isRowNumbers() { if (rowNumbers == null) { return false; } else { return rowNumbers; } } /** * Sets the value of the rowNumbers property. * * @param value * allowed object is * {@link Boolean } * */ public void setRowNumbers(Boolean value) { this.rowNumbers = value; } /** * Gets the value of the disableRefresh property. * * @return * possible object is * {@link Boolean } * */ public boolean isDisableRefresh() { if (disableRefresh == null) { return false; } else { return disableRefresh; } } /** * Sets the value of the disableRefresh property. * * @param value * allowed object is * {@link Boolean } * */ public void setDisableRefresh(Boolean value) { this.disableRefresh = value; } /** * Gets the value of the backgroundRefresh property. * * @return * possible object is * {@link Boolean } * */ public boolean isBackgroundRefresh() { if (backgroundRefresh == null) { return true; } else { return backgroundRefresh; } } /** * Sets the value of the backgroundRefresh property. * * @param value * allowed object is * {@link Boolean } * */ public void setBackgroundRefresh(Boolean value) { this.backgroundRefresh = value; } /** * Gets the value of the firstBackgroundRefresh property. * * @return * possible object is * {@link Boolean } * */ public boolean isFirstBackgroundRefresh() { if (firstBackgroundRefresh == null) { return false; } else { return firstBackgroundRefresh; } } /** * Sets the value of the firstBackgroundRefresh property. * * @param value * allowed object is * {@link Boolean } * */ public void setFirstBackgroundRefresh(Boolean value) { this.firstBackgroundRefresh = value; } /** * Gets the value of the refreshOnLoad property. * * @return * possible object is * {@link Boolean } * */ public boolean isRefreshOnLoad() { if (refreshOnLoad == null) { return false; } else { return refreshOnLoad; } } /** * Sets the value of the refreshOnLoad property. * * @param value * allowed object is * {@link Boolean } * */ public void setRefreshOnLoad(Boolean value) { this.refreshOnLoad = value; } /** * Gets the value of the growShrinkType property. * * @return * possible object is * {@link STGrowShrinkType } * */ public STGrowShrinkType getGrowShrinkType() { if (growShrinkType == null) { return STGrowShrinkType.INSERT_DELETE; } else { return growShrinkType; } } /** * Sets the value of the growShrinkType property. * * @param value * allowed object is * {@link STGrowShrinkType } * */ public void setGrowShrinkType(STGrowShrinkType value) { this.growShrinkType = value; } /** * Gets the value of the fillFormulas property. * * @return * possible object is * {@link Boolean } * */ public boolean isFillFormulas() { if (fillFormulas == null) { return false; } else { return fillFormulas; } } /** * Sets the value of the fillFormulas property. * * @param value * allowed object is * {@link Boolean } * */ public void setFillFormulas(Boolean value) { this.fillFormulas = value; } /** * Gets the value of the removeDataOnSave property. * * @return * possible object is * {@link Boolean } * */ public boolean isRemoveDataOnSave() { if (removeDataOnSave == null) { return false; } else { return removeDataOnSave; } } /** * Sets the value of the removeDataOnSave property. * * @param value * allowed object is * {@link Boolean } * */ public void setRemoveDataOnSave(Boolean value) { this.removeDataOnSave = value; } /** * Gets the value of the disableEdit property. * * @return * possible object is * {@link Boolean } * */ public boolean isDisableEdit() { if (disableEdit == null) { return false; } else { return disableEdit; } } /** * Sets the value of the disableEdit property. * * @param value * allowed object is * {@link Boolean } * */ public void setDisableEdit(Boolean value) { this.disableEdit = value; } /** * Gets the value of the preserveFormatting property. * * @return * possible object is * {@link Boolean } * */ public boolean isPreserveFormatting() { if (preserveFormatting == null) { return true; } else { return preserveFormatting; } } /** * Sets the value of the preserveFormatting property. * * @param value * allowed object is * {@link Boolean } * */ public void setPreserveFormatting(Boolean value) { this.preserveFormatting = value; } /** * Gets the value of the adjustColumnWidth property. * * @return * possible object is * {@link Boolean } * */ public boolean isAdjustColumnWidth() { if (adjustColumnWidth == null) { return true; } else { return adjustColumnWidth; } } /** * Sets the value of the adjustColumnWidth property. * * @param value * allowed object is * {@link Boolean } * */ public void setAdjustColumnWidth(Boolean value) { this.adjustColumnWidth = value; } /** * Gets the value of the intermediate property. * * @return * possible object is * {@link Boolean } * */ public boolean isIntermediate() { if (intermediate == null) { return false; } else { return intermediate; } } /** * Sets the value of the intermediate property. * * @param value * allowed object is * {@link Boolean } * */ public void setIntermediate(Boolean value) { this.intermediate = value; } /** * Gets the value of the connectionId property. * */ public long getConnectionId() { return connectionId; } /** * Sets the value of the connectionId property. * */ public void setConnectionId(long value) { this.connectionId = value; } /** * Gets the value of the autoFormatId property. * * @return * possible object is * {@link Long } * */ public Long getAutoFormatId() { return autoFormatId; } /** * Sets the value of the autoFormatId property. * * @param value * allowed object is * {@link Long } * */ public void setAutoFormatId(Long value) { this.autoFormatId = value; } /** * Gets the value of the applyNumberFormats property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApplyNumberFormats() { return applyNumberFormats; } /** * Sets the value of the applyNumberFormats property. * * @param value * allowed object is * {@link Boolean } * */ public void setApplyNumberFormats(Boolean value) { this.applyNumberFormats = value; } /** * Gets the value of the applyBorderFormats property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApplyBorderFormats() { return applyBorderFormats; } /** * Sets the value of the applyBorderFormats property. * * @param value * allowed object is * {@link Boolean } * */ public void setApplyBorderFormats(Boolean value) { this.applyBorderFormats = value; } /** * Gets the value of the applyFontFormats property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApplyFontFormats() { return applyFontFormats; } /** * Sets the value of the applyFontFormats property. * * @param value * allowed object is * {@link Boolean } * */ public void setApplyFontFormats(Boolean value) { this.applyFontFormats = value; } /** * Gets the value of the applyPatternFormats property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApplyPatternFormats() { return applyPatternFormats; } /** * Sets the value of the applyPatternFormats property. * * @param value * allowed object is * {@link Boolean } * */ public void setApplyPatternFormats(Boolean value) { this.applyPatternFormats = value; } /** * Gets the value of the applyAlignmentFormats property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApplyAlignmentFormats() { return applyAlignmentFormats; } /** * Sets the value of the applyAlignmentFormats property. * * @param value * allowed object is * {@link Boolean } * */ public void setApplyAlignmentFormats(Boolean value) { this.applyAlignmentFormats = value; } /** * Gets the value of the applyWidthHeightFormats property. * * @return * possible object is * {@link Boolean } * */ public Boolean isApplyWidthHeightFormats() { return applyWidthHeightFormats; } /** * Sets the value of the applyWidthHeightFormats property. * * @param value * allowed object is * {@link Boolean } * */ public void setApplyWidthHeightFormats(Boolean value) { this.applyWidthHeightFormats = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy