![JAR search and dependency download from the Maven repository](/logo.png)
com.microsoft.graph.generated.models.WorkbookWorksheetProtectionOptions Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import com.microsoft.kiota.store.BackedModel;
import com.microsoft.kiota.store.BackingStore;
import com.microsoft.kiota.store.BackingStoreFactorySingleton;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class WorkbookWorksheetProtectionOptions implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link WorkbookWorksheetProtectionOptions} and sets the default values.
*/
public WorkbookWorksheetProtectionOptions() {
this.backingStore = BackingStoreFactorySingleton.instance.createBackingStore();
this.setAdditionalData(new HashMap<>());
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link WorkbookWorksheetProtectionOptions}
*/
@jakarta.annotation.Nonnull
public static WorkbookWorksheetProtectionOptions createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new WorkbookWorksheetProtectionOptions();
}
/**
* Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @return a {@link Map}
*/
@jakarta.annotation.Nonnull
public Map getAdditionalData() {
Map value = this.backingStore.get("additionalData");
if(value == null) {
value = new HashMap<>();
this.setAdditionalData(value);
}
return value;
}
/**
* Gets the allowAutoFilter property value. Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowAutoFilter() {
return this.backingStore.get("allowAutoFilter");
}
/**
* Gets the allowDeleteColumns property value. Indicates whether the worksheet protection option to allow deleting columns is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowDeleteColumns() {
return this.backingStore.get("allowDeleteColumns");
}
/**
* Gets the allowDeleteRows property value. Indicates whether the worksheet protection option to allow deleting rows is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowDeleteRows() {
return this.backingStore.get("allowDeleteRows");
}
/**
* Gets the allowFormatCells property value. Indicates whether the worksheet protection option to allow formatting cells is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowFormatCells() {
return this.backingStore.get("allowFormatCells");
}
/**
* Gets the allowFormatColumns property value. Indicates whether the worksheet protection option to allow formatting columns is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowFormatColumns() {
return this.backingStore.get("allowFormatColumns");
}
/**
* Gets the allowFormatRows property value. Indicates whether the worksheet protection option to allow formatting rows is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowFormatRows() {
return this.backingStore.get("allowFormatRows");
}
/**
* Gets the allowInsertColumns property value. Indicates whether the worksheet protection option to allow inserting columns is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowInsertColumns() {
return this.backingStore.get("allowInsertColumns");
}
/**
* Gets the allowInsertHyperlinks property value. Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowInsertHyperlinks() {
return this.backingStore.get("allowInsertHyperlinks");
}
/**
* Gets the allowInsertRows property value. Indicates whether the worksheet protection option to allow inserting rows is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowInsertRows() {
return this.backingStore.get("allowInsertRows");
}
/**
* Gets the allowPivotTables property value. Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowPivotTables() {
return this.backingStore.get("allowPivotTables");
}
/**
* Gets the allowSort property value. Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAllowSort() {
return this.backingStore.get("allowSort");
}
/**
* Gets the backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(12);
deserializerMap.put("allowAutoFilter", (n) -> { this.setAllowAutoFilter(n.getBooleanValue()); });
deserializerMap.put("allowDeleteColumns", (n) -> { this.setAllowDeleteColumns(n.getBooleanValue()); });
deserializerMap.put("allowDeleteRows", (n) -> { this.setAllowDeleteRows(n.getBooleanValue()); });
deserializerMap.put("allowFormatCells", (n) -> { this.setAllowFormatCells(n.getBooleanValue()); });
deserializerMap.put("allowFormatColumns", (n) -> { this.setAllowFormatColumns(n.getBooleanValue()); });
deserializerMap.put("allowFormatRows", (n) -> { this.setAllowFormatRows(n.getBooleanValue()); });
deserializerMap.put("allowInsertColumns", (n) -> { this.setAllowInsertColumns(n.getBooleanValue()); });
deserializerMap.put("allowInsertHyperlinks", (n) -> { this.setAllowInsertHyperlinks(n.getBooleanValue()); });
deserializerMap.put("allowInsertRows", (n) -> { this.setAllowInsertRows(n.getBooleanValue()); });
deserializerMap.put("allowPivotTables", (n) -> { this.setAllowPivotTables(n.getBooleanValue()); });
deserializerMap.put("allowSort", (n) -> { this.setAllowSort(n.getBooleanValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the @odata.type property value. The OdataType property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getOdataType() {
return this.backingStore.get("odataType");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
writer.writeBooleanValue("allowAutoFilter", this.getAllowAutoFilter());
writer.writeBooleanValue("allowDeleteColumns", this.getAllowDeleteColumns());
writer.writeBooleanValue("allowDeleteRows", this.getAllowDeleteRows());
writer.writeBooleanValue("allowFormatCells", this.getAllowFormatCells());
writer.writeBooleanValue("allowFormatColumns", this.getAllowFormatColumns());
writer.writeBooleanValue("allowFormatRows", this.getAllowFormatRows());
writer.writeBooleanValue("allowInsertColumns", this.getAllowInsertColumns());
writer.writeBooleanValue("allowInsertHyperlinks", this.getAllowInsertHyperlinks());
writer.writeBooleanValue("allowInsertRows", this.getAllowInsertRows());
writer.writeBooleanValue("allowPivotTables", this.getAllowPivotTables());
writer.writeBooleanValue("allowSort", this.getAllowSort());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @param value Value to set for the AdditionalData property.
*/
public void setAdditionalData(@jakarta.annotation.Nullable final Map value) {
this.backingStore.set("additionalData", value);
}
/**
* Sets the allowAutoFilter property value. Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
* @param value Value to set for the allowAutoFilter property.
*/
public void setAllowAutoFilter(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowAutoFilter", value);
}
/**
* Sets the allowDeleteColumns property value. Indicates whether the worksheet protection option to allow deleting columns is enabled.
* @param value Value to set for the allowDeleteColumns property.
*/
public void setAllowDeleteColumns(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowDeleteColumns", value);
}
/**
* Sets the allowDeleteRows property value. Indicates whether the worksheet protection option to allow deleting rows is enabled.
* @param value Value to set for the allowDeleteRows property.
*/
public void setAllowDeleteRows(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowDeleteRows", value);
}
/**
* Sets the allowFormatCells property value. Indicates whether the worksheet protection option to allow formatting cells is enabled.
* @param value Value to set for the allowFormatCells property.
*/
public void setAllowFormatCells(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowFormatCells", value);
}
/**
* Sets the allowFormatColumns property value. Indicates whether the worksheet protection option to allow formatting columns is enabled.
* @param value Value to set for the allowFormatColumns property.
*/
public void setAllowFormatColumns(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowFormatColumns", value);
}
/**
* Sets the allowFormatRows property value. Indicates whether the worksheet protection option to allow formatting rows is enabled.
* @param value Value to set for the allowFormatRows property.
*/
public void setAllowFormatRows(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowFormatRows", value);
}
/**
* Sets the allowInsertColumns property value. Indicates whether the worksheet protection option to allow inserting columns is enabled.
* @param value Value to set for the allowInsertColumns property.
*/
public void setAllowInsertColumns(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowInsertColumns", value);
}
/**
* Sets the allowInsertHyperlinks property value. Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
* @param value Value to set for the allowInsertHyperlinks property.
*/
public void setAllowInsertHyperlinks(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowInsertHyperlinks", value);
}
/**
* Sets the allowInsertRows property value. Indicates whether the worksheet protection option to allow inserting rows is enabled.
* @param value Value to set for the allowInsertRows property.
*/
public void setAllowInsertRows(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowInsertRows", value);
}
/**
* Sets the allowPivotTables property value. Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
* @param value Value to set for the allowPivotTables property.
*/
public void setAllowPivotTables(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowPivotTables", value);
}
/**
* Sets the allowSort property value. Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
* @param value Value to set for the allowSort property.
*/
public void setAllowSort(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("allowSort", value);
}
/**
* Sets the backingStore property value. Stores model information.
* @param value Value to set for the backingStore property.
*/
public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value) {
Objects.requireNonNull(value);
this.backingStore = value;
}
/**
* Sets the @odata.type property value. The OdataType property
* @param value Value to set for the @odata.type property.
*/
public void setOdataType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("odataType", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy