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

de.svws_nrw.asd.data.RGBFarbe Maven / Gradle / Ivy

Go to download

Diese Bibliothek stellt grundlegende Datenypen und Algorithmen für die Prüfung der amtlichen Schuldaten in NRW bereit

There is a newer version: 1.0.0
Show newest version
package de.svws_nrw.asd.data;

import de.svws_nrw.transpiler.TranspilerDTO;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.xml.bind.annotation.XmlRootElement;

/**
 * Die Klasse ist ein Core-DTO für die Farbdefinition nach dem RGB-Schema.
 */
@XmlRootElement
@Schema(description = "Eine RGB-Farbdefinition.")
@TranspilerDTO
public class RGBFarbe {

	/** Der Rot-Anteil der Farbe (0-255) */
	@Schema(description = "der Rot-Anteil der Farbe (0-255)", example = "220")
	public int red = 220;

	/** Der Grün-Anteil der Farbe (0-255) */
	@Schema(description = "der Grün-Anteil der Farbe (0-255)", example = "220")
	public int green = 220;

	/** Der Blau-Anteil der Farbe (0-255) */
	@Schema(description = "der Blau-Anteil der Farbe (0-255)", example = "220")
	public int blue = 220;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy