com.microsoft.graph.generated.models.WorkbookChartFont Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class WorkbookChartFont extends Entity implements Parsable {
/**
* Instantiates a new {@link WorkbookChartFont} and sets the default values.
*/
public WorkbookChartFont() {
super();
}
/**
* 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 WorkbookChartFont}
*/
@jakarta.annotation.Nonnull
public static WorkbookChartFont createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new WorkbookChartFont();
}
/**
* Gets the bold property value. Indicates whether the fond is bold.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getBold() {
return this.backingStore.get("bold");
}
/**
* Gets the color property value. The HTML color code representation of the text color. For example #FF0000 represents Red.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getColor() {
return this.backingStore.get("color");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("bold", (n) -> { this.setBold(n.getBooleanValue()); });
deserializerMap.put("color", (n) -> { this.setColor(n.getStringValue()); });
deserializerMap.put("italic", (n) -> { this.setItalic(n.getBooleanValue()); });
deserializerMap.put("name", (n) -> { this.setName(n.getStringValue()); });
deserializerMap.put("size", (n) -> { this.setSize(n.getDoubleValue()); });
deserializerMap.put("underline", (n) -> { this.setUnderline(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the italic property value. Indicates whether the fond is italic.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getItalic() {
return this.backingStore.get("italic");
}
/**
* Gets the name property value. The font name. For example 'Calibri'.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getName() {
return this.backingStore.get("name");
}
/**
* Gets the size property value. The size of the font. For example, 11.
* @return a {@link Double}
*/
@jakarta.annotation.Nullable
public Double getSize() {
return this.backingStore.get("size");
}
/**
* Gets the underline property value. The type of underlining applied to the font. The possible values are: None, Single.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getUnderline() {
return this.backingStore.get("underline");
}
/**
* 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);
super.serialize(writer);
writer.writeBooleanValue("bold", this.getBold());
writer.writeStringValue("color", this.getColor());
writer.writeBooleanValue("italic", this.getItalic());
writer.writeStringValue("name", this.getName());
writer.writeDoubleValue("size", this.getSize());
writer.writeStringValue("underline", this.getUnderline());
}
/**
* Sets the bold property value. Indicates whether the fond is bold.
* @param value Value to set for the bold property.
*/
public void setBold(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("bold", value);
}
/**
* Sets the color property value. The HTML color code representation of the text color. For example #FF0000 represents Red.
* @param value Value to set for the color property.
*/
public void setColor(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("color", value);
}
/**
* Sets the italic property value. Indicates whether the fond is italic.
* @param value Value to set for the italic property.
*/
public void setItalic(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("italic", value);
}
/**
* Sets the name property value. The font name. For example 'Calibri'.
* @param value Value to set for the name property.
*/
public void setName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("name", value);
}
/**
* Sets the size property value. The size of the font. For example, 11.
* @param value Value to set for the size property.
*/
public void setSize(@jakarta.annotation.Nullable final Double value) {
this.backingStore.set("size", value);
}
/**
* Sets the underline property value. The type of underlining applied to the font. The possible values are: None, Single.
* @param value Value to set for the underline property.
*/
public void setUnderline(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("underline", value);
}
}