de.svws_nrw.asd.data.RGBFarbe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svws-asd Show documentation
Show all versions of svws-asd Show documentation
Diese Bibliothek stellt grundlegende Datenypen und Algorithmen für die Prüfung der amtlichen Schuldaten in NRW bereit
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;
}