Package ch.nolix.system.graphic.color
Klasse ColorGradient
java.lang.Object
ch.nolix.system.element.base.AbstractElement
ch.nolix.system.graphic.color.ColorGradient
- Alle implementierten Schnittstellen:
IElement
,IColorGradient
A
ColorGradient
is not mutable.- Version:
- 2016-08-01
- Autor:
- Silvan Wyss
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final Color
static final Color
static final DirectionInCanvas
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic ColorGradient
fromSpecification
(INode<?> specification) IContainer
<INode<?>> static ColorGradient
withColors
(Color color1, Color color2) static ColorGradient
withDirectionAndColors
(DirectionInCanvas direction, Color color1, Color color2) Von Klasse geerbte Methoden ch.nolix.system.element.base.AbstractElement
equals, getSpecification, hashCode, toString
Von Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.nolix.systemapi.elementapi.baseapi.IElement
getSpecification, toFormatedString, toXml
-
Felddetails
-
DEFAULT_DIRECTION
-
DEFAULT_COLOR1
-
DEFAULT_COLOR2
-
-
Methodendetails
-
fromSpecification
- Parameter:
specification
-- Gibt zurück:
- a new
ColorGradient
from the given specification. - Löst aus:
InvalidArgumentException
- if the given specification is not valid.
-
withColors
- Parameter:
color1
-color2
-- Gibt zurück:
- a new
ColorGradient
with the given color1 and color2. - Löst aus:
ArgumentIsNullException
- if the given color1 is null.ArgumentIsNullException
- if the given color2 is null.
-
withDirectionAndColors
public static ColorGradient withDirectionAndColors(DirectionInCanvas direction, Color color1, Color color2) - Parameter:
direction
-color1
-color2
-- Gibt zurück:
- a new
ColorGradient
with the given direction, color1 and color2. - Löst aus:
ArgumentIsNullException
- if the given direction is null.ArgumentIsNullException
- if the given color 1 is null.ArgumentIsNullException
- if the given color 2 is null.
-
getAttributes
- Angegeben von:
getAttributes
in SchnittstelleIElement
- Gibt zurück:
- the attributes of the current
IElement
.
-
getColor1
- Angegeben von:
getColor1
in SchnittstelleIColorGradient
- Gibt zurück:
- the color1 of the current
IColorGradient
.
-
getColor2
- Angegeben von:
getColor2
in SchnittstelleIColorGradient
- Gibt zurück:
- the color2 of the current
IColorGradient
.
-
getDirection
- Angegeben von:
getDirection
in SchnittstelleIColorGradient
- Gibt zurück:
- the direction of the current
IColorGradient
.
-