All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.teamapps.dto.UiShapeProperties Maven / Gradle / Ivy

The newest version!
package org.teamapps.dto;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.function.Supplier;
import java.util.stream.Collectors;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.annotation.JsonTypeIdResolver;

/**
 * THIS IS GENERATED CODE!
 * PLEASE DO NOT MODIFY - ALL YOUR WORK WOULD BE LOST!
 */
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, property = "_type", defaultImpl = UiShapeProperties.class)
public class UiShapeProperties implements UiObject {


	protected String strokeColor;
	protected float strokeWeight;
	protected List strokeDashArray;
	protected String fillColor;

	public UiShapeProperties() {
	}

	@com.fasterxml.jackson.annotation.JsonIgnore
	public UiObjectType getUiObjectType() {
		return UiObjectType.UI_SHAPE_PROPERTIES;
	}

	@SuppressWarnings("unchecked")
	public String toString() {
		return new StringBuilder(getClass().getSimpleName()).append(": ")
				.append("strokeColor=" + strokeColor).append(", ")
				.append("strokeWeight=" + strokeWeight).append(", ")
				.append("strokeDashArray=" + strokeDashArray).append(", ")
				.append("fillColor=" + fillColor)
				.toString();
	}

	@com.fasterxml.jackson.annotation.JsonGetter("strokeColor")
	public String getStrokeColor() {
		return strokeColor;
	}

	@com.fasterxml.jackson.annotation.JsonGetter("strokeWeight")
	public float getStrokeWeight() {
		return strokeWeight;
	}

	@com.fasterxml.jackson.annotation.JsonGetter("strokeDashArray")
	public List getStrokeDashArray() {
		return strokeDashArray;
	}

	@com.fasterxml.jackson.annotation.JsonGetter("fillColor")
	public String getFillColor() {
		return fillColor;
	}

	@com.fasterxml.jackson.annotation.JsonSetter("strokeColor")
	public UiShapeProperties setStrokeColor(String strokeColor) {
		this.strokeColor = strokeColor;
		return this;
	}

	@com.fasterxml.jackson.annotation.JsonSetter("strokeWeight")
	public UiShapeProperties setStrokeWeight(float strokeWeight) {
		this.strokeWeight = strokeWeight;
		return this;
	}

	@com.fasterxml.jackson.annotation.JsonSetter("strokeDashArray")
	public UiShapeProperties setStrokeDashArray(List strokeDashArray) {
		this.strokeDashArray = strokeDashArray;
		return this;
	}

	@com.fasterxml.jackson.annotation.JsonSetter("fillColor")
	public UiShapeProperties setFillColor(String fillColor) {
		this.fillColor = fillColor;
		return this;
	}




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy