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

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

There is a newer version: 0.9.191
Show 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 = UiLine.class)
public class UiLine implements UiObject {


	protected float thickness;
	protected String color;
	protected UiLineType type = UiLineType.SOLID;

	/**
	 * @deprecated Only for Jackson deserialization. Use the other constructor instead.
	 */
	@Deprecated
	public UiLine() {
		// default constructor for Jackson
	}

	public UiLine(float thickness, String color) {
		this.thickness = thickness;
		this.color = color;
	}

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

	@SuppressWarnings("unchecked")
	public String toString() {
		return new StringBuilder(getClass().getSimpleName()).append(": ")
				.append("thickness=" + thickness).append(", ")
				.append("color=" + color).append(", ")
				.append("type=" + type)
				.toString();
	}

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

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

	@com.fasterxml.jackson.annotation.JsonGetter("type")
	public UiLineType getType() {
		return type;
	}

	@com.fasterxml.jackson.annotation.JsonSetter("type")
	public UiLine setType(UiLineType type) {
		this.type = type;
		return this;
	}




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy