Package org.xlsx4j.sml
Class CTCellStyle
java.lang.Object
org.xlsx4j.sml.CTCellStyle
- All Implemented Interfaces:
Child
Java class for CT_CellStyle complex type.
This element expresses the name and related formatting records for a named cell style in this workbook.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CT_CellStyle">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="extLst" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ExtensionList" minOccurs="0"/>
</sequence>
<attribute name="name" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
<attribute name="xfId" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellStyleXfId" />
<attribute name="builtinId" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
<attribute name="iLevel" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
<attribute name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="customBuiltin" type="{http://www.w3.org/2001/XMLSchema}boolean" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
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.Gets the value of the builtinId property.Gets the value of the extLst property.Gets the value of the iLevel property.getName()Gets the value of the name property.Gets the parent object in the object tree representing the unmarshalled xml document.longgetXfId()Gets the value of the xfId property.Gets the value of the customBuiltin property.isHidden()Gets the value of the hidden property.voidsetBuiltinId(Long value) Sets the value of the builtinId property.voidsetCustomBuiltin(Boolean value) Sets the value of the customBuiltin property.voidsetExtLst(CTExtensionList value) Sets the value of the extLst property.voidSets the value of the hidden property.voidSets the value of the iLevel property.voidSets the value of the name property.voidvoidsetXfId(long value) Sets the value of the xfId property.
-
Field Details
-
extLst
-
name
-
xfId
protected long xfId -
builtinId
-
iLevel
-
customBuiltin
-
-
Constructor Details
-
CTCellStyle
public CTCellStyle()
-
-
Method Details
-
getExtLst
Gets the value of the extLst property.- Returns:
- possible object is
CTExtensionList
-
setExtLst
Sets the value of the extLst property.- Parameters:
value- allowed object isCTExtensionList
-
getName
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getXfId
public long getXfId()Gets the value of the xfId property. -
setXfId
public void setXfId(long value) Sets the value of the xfId property. -
getBuiltinId
Gets the value of the builtinId property.- Returns:
- possible object is
Long
-
setBuiltinId
Sets the value of the builtinId property.- Parameters:
value- allowed object isLong
-
getILevel
Gets the value of the iLevel property.- Returns:
- possible object is
Long
-
setILevel
Sets the value of the iLevel property.- Parameters:
value- allowed object isLong
-
isHidden
Gets the value of the hidden property.- Returns:
- possible object is
Boolean
-
setHidden
Sets the value of the hidden property.- Parameters:
value- allowed object isBoolean
-
isCustomBuiltin
Gets the value of the customBuiltin property.- Returns:
- possible object is
Boolean
-
setCustomBuiltin
Sets the value of the customBuiltin property.- Parameters:
value- allowed object isBoolean
-
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.
-