Class DeserializationOptions
public class DeserializationOptions
extends Object
Represents some settings when deserialize workbook or worksheet from JSON.
-
Constructor Summary
Constructors
-
Method Summary
boolean
Gets whether to prevent recalculation after loading the JSON data.
boolean
Gets whether to ignore the formula when deserialize the workbook or worksheet from JSON.
boolean
Gets whether to ignore the style when deserialize the workbook or worksheet from JSON.
void
Sets whether to prevent recalculation after loading the JSON data.
void
Sets whether to ignore the formula when deserialize the workbook or worksheet from JSON.
void
Sets whether to ignore the style when deserialize the workbook or worksheet from JSON.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
DeserializationOptions
public DeserializationOptions()
-
Method Details
-
getIgnoreStyle
public boolean getIgnoreStyle()
Gets whether to ignore the style when deserialize the workbook or worksheet from JSON. Default value is false.
-
setIgnoreStyle
public void setIgnoreStyle(boolean value)
Sets whether to ignore the style when deserialize the workbook or worksheet from JSON. Default value is false.
-
-
-
getDoNotRecalculateAfterLoad
public boolean getDoNotRecalculateAfterLoad()
Gets whether to prevent recalculation after loading the JSON data. Default value is false.
-
setDoNotRecalculateAfterLoad
public void setDoNotRecalculateAfterLoad(boolean value)
Sets whether to prevent recalculation after loading the JSON data. Default value is false.