Package io.jenkins.plugins.echarts
Enum JenkinsPalette
- Alle implementierten Schnittstellen:
Serializable
,Comparable<JenkinsPalette>
Jenkins color palette. Each color is represented as a CSS variable that will be rendered according to the selected
theme.
- Autor:
- Ullrich Hafner
- Siehe auch:
-
Enum-Konstanten - Übersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic JenkinsPalette
chartColor
(int n) Returns a chart color that can be used to render elementn
in a chart.dark()
Returns the CSS variable name for this color (dark variation).light()
Returns the CSS variable name for this color (light variation).normal()
Returns the CSS variable name for this color.static JenkinsPalette
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.static JenkinsPalette[]
values()
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
-
Enum-Konstanten - Details
-
BLACK
-
BLUE
-
BROWN
-
CYAN
-
GREY
-
GREEN
-
INDIGO
-
ORANGE
-
PINK
-
PURPLE
-
RED
-
WHITE
-
YELLOW
-
-
Methodendetails
-
values
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.- Gibt zurück:
- ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
-
valueOf
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)- Parameter:
name
- Name der zurückzugebenden Enumerationskonstante.- Gibt zurück:
- Enumerationskonstante mit dem angegebenen Namen
- Löst aus:
IllegalArgumentException
- wenn dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthältNullPointerException
- wenn das Argument nicht angegeben wird
-
chartColor
Returns a chart color that can be used to render elementn
in a chart. Ifn
is greater than the number of available colors then the color will be selected from the beginning of the list, and so on.- Parameter:
n
- the n-th element to render- Gibt zurück:
- a color to be used for rendering the n-th element
-
light
Returns the CSS variable name for this color (light variation).- Gibt zurück:
- the CSS variable name
-
normal
Returns the CSS variable name for this color.- Gibt zurück:
- the CSS variable name
-
dark
Returns the CSS variable name for this color (dark variation).- Gibt zurück:
- the CSS variable name
-