Class CTFileRecoveryPr

java.lang.Object
org.xlsx4j.sml.CTFileRecoveryPr
All Implemented Interfaces:
Child

public class CTFileRecoveryPr extends Object implements Child

Java class for CT_FileRecoveryPr complex type.

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

 <complexType name="CT_FileRecoveryPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="autoRecover" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="crashSave" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="dataExtractLoad" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="repairLoad" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • autoRecover

      protected Boolean autoRecover
    • crashSave

      protected Boolean crashSave
    • dataExtractLoad

      protected Boolean dataExtractLoad
    • repairLoad

      protected Boolean repairLoad
  • Constructor Details

    • CTFileRecoveryPr

      public CTFileRecoveryPr()
  • Method Details

    • isAutoRecover

      public boolean isAutoRecover()
      Gets the value of the autoRecover property.
      Returns:
      possible object is Boolean
    • setAutoRecover

      public void setAutoRecover(Boolean value)
      Sets the value of the autoRecover property.
      Parameters:
      value - allowed object is Boolean
    • isCrashSave

      public boolean isCrashSave()
      Gets the value of the crashSave property.
      Returns:
      possible object is Boolean
    • setCrashSave

      public void setCrashSave(Boolean value)
      Sets the value of the crashSave property.
      Parameters:
      value - allowed object is Boolean
    • isDataExtractLoad

      public boolean isDataExtractLoad()
      Gets the value of the dataExtractLoad property.
      Returns:
      possible object is Boolean
    • setDataExtractLoad

      public void setDataExtractLoad(Boolean value)
      Sets the value of the dataExtractLoad property.
      Parameters:
      value - allowed object is Boolean
    • isRepairLoad

      public boolean isRepairLoad()
      Gets the value of the repairLoad property.
      Returns:
      possible object is Boolean
    • setRepairLoad

      public void setRepairLoad(Boolean value)
      Sets the value of the repairLoad property.
      Parameters:
      value - allowed object is Boolean
    • getParent

      public Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, 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.