Package org.xlsx4j.sml
Class CTMdxSet
java.lang.Object
org.xlsx4j.sml.CTMdxSet
- All Implemented Interfaces:
Child
public class CTMdxSet extends java.lang.Object implements Child
Java class for CT_MdxSet complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CT_MdxSet">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="n" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_MetadataStringIndex" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="ns" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
<attribute name="c" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="0" />
<attribute name="o" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_MdxSetOrder" default="u" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Longcprotected java.util.List<CTMetadataStringIndex>nprotected longnsprotected STMdxSetOrdero -
Constructor Summary
Constructors Constructor Description CTMdxSet() -
Method Summary
Modifier and Type Method Description voidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)This method is invoked by the JAXB implementation on each instance when unmarshalling completes.longgetC()Gets the value of the c property.java.util.List<CTMetadataStringIndex>getN()Gets the value of the n property.longgetNs()Gets the value of the ns property.STMdxSetOrdergetO()Gets the value of the o property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.voidsetC(java.lang.Long value)Sets the value of the c property.voidsetNs(long value)Sets the value of the ns property.voidsetO(STMdxSetOrder value)Sets the value of the o property.voidsetParent(java.lang.Object parent)Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
n
-
ns
protected long ns -
c
protected java.lang.Long c -
o
-
-
Constructor Details
-
CTMdxSet
public CTMdxSet()
-
-
Method Details
-
getN
Gets the value of the n property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the n property.For example, to add a new item, do as follows:
getN().add(newItem);Objects of the following type(s) are allowed in the list
CTMetadataStringIndex -
getNs
public long getNs()Gets the value of the ns property. -
setNs
public void setNs(long value)Sets the value of the ns property. -
getC
public long getC()Gets the value of the c property.- Returns:
- possible object is
Long
-
setC
public void setC(java.lang.Long value)Sets the value of the c property.- Parameters:
value- allowed object isLong
-
getO
Gets the value of the o property.- Returns:
- possible object is
STMdxSetOrder
-
setO
Sets the value of the o property.- Parameters:
value- allowed object isSTMdxSetOrder
-
getParent
public java.lang.Object getParent()Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
public void setParent(java.lang.Object parent) -
afterUnmarshal
public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)This method is invoked by the JAXB implementation on each instance when unmarshalling completes.- Parameters:
parent- The parent object in the object tree.unmarshaller- The unmarshaller that generated the instance.
-