Package org.xlsx4j.sml
Class CTMdxSet
java.lang.Object
org.xlsx4j.sml.CTMdxSet
- All Implemented Interfaces:
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
FieldsModifier and TypeFieldDescriptionprotected Longprotected List<CTMetadataStringIndex>protected longprotected STMdxSetOrder -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent) This method is invoked by the JAXB implementation on each instance when unmarshalling completes.longgetC()Gets the value of the c property.getN()Gets the value of the n property.longgetNs()Gets the value of the ns property.getO()Gets the value of the o property.Gets the parent object in the object tree representing the unmarshalled xml document.voidSets 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.void
-
Field Details
-
n
-
ns
protected long ns -
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
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
Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
-
afterUnmarshal
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.
-