Package ch.nolix.system.graphic.color
Klasse Color
java.lang.Object
ch.nolix.system.element.base.AbstractElement
ch.nolix.system.graphic.color.Color
A
Color
is not mutable.- Version:
- 2016-01-01
- Autor:
- Silvan Wyss
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
static final short
static final long
static final short
static final long
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic Color
createAverageFrom
(IContainer<IColor> colors) static Color
createAverageFrom
(IColor color, IColor... colors) static Color
static Color
fromLong
(long pLong) static Color
fromSpecification
(INode<?> specification) static Color
fromString
(String string) double
int
IContainer
<INode<?>> double
int
double
int
double
int
boolean
boolean
boolean
boolean
int
long
toLong()
withAlphaValue
(int alphaValue) withFloatingPointAlphaValue
(double floatingPointAlphaValue) static Color
withRedValueAndGreenValueAndBlueValue
(int redValue, int greenValue, int blueValue) static Color
withRedValueAndGreenValueAndBlueValueAndAlphaValue
(int redValue, int greenValue, int blueValue, int alphaValue) 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_ALPHA_VALUE
public static final int DEFAULT_ALPHA_VALUE- Siehe auch:
-
MIN_COLOR_LONG
public static final long MIN_COLOR_LONG- Siehe auch:
-
MAX_COLOR_LONG
public static final long MAX_COLOR_LONG- Siehe auch:
-
MIN_COLOR_COMPONENT
public static final short MIN_COLOR_COMPONENT- Siehe auch:
-
MAX_COLOR_COMPONENT
public static final short MAX_COLOR_COMPONENT- Siehe auch:
-
-
Methodendetails
-
createAverageFrom
-
createAverageFrom
-
fromColor
- Parameter:
color
-- Gibt zurück:
- a new
Color
from the given color. - Löst aus:
NullPointerException
- if the given color is null.
-
fromLong
- Parameter:
pLong
-- Gibt zurück:
- a new
Color
from the given pLong. - Löst aus:
UnrepresentingArgumentException
- if the given pLong does not represent aColor
.
-
fromSpecification
- Parameter:
specification
-- Gibt zurück:
- a new
Color
from the given specification - Löst aus:
InvalidArgumentException
- if the given specification is not valid.
-
fromString
- Parameter:
string
-- Gibt zurück:
- a new
Color
from the given string. - Löst aus:
UnrepresentingArgumentException
- if the given string does not represent aColor
.
-
withRedValueAndGreenValueAndBlueValue
public static Color withRedValueAndGreenValueAndBlueValue(int redValue, int greenValue, int blueValue) - Parameter:
redValue
-greenValue
-blueValue
-- Gibt zurück:
- a new
Color
with the given redValue, greenValue and blueValue. - Löst aus:
ArgumentIsOutOfRangeException
- if the given blueValue is not a true color component (in [0, 255]).ArgumentIsOutOfRangeException
- if the given greenValue is not a true color component (in [0, 255]).ArgumentIsOutOfRangeException
- if the given blueValue is not a true color component (in [0, 255]).
-
withRedValueAndGreenValueAndBlueValueAndAlphaValue
public static Color withRedValueAndGreenValueAndBlueValueAndAlphaValue(int redValue, int greenValue, int blueValue, int alphaValue) - Parameter:
redValue
-greenValue
-blueValue
-alphaValue
-- Gibt zurück:
- a new
Color
with the given redValue, greenValue, blueValue and alphaValue. - Löst aus:
ArgumentIsOutOfRangeException
- if the given blueValue is not a true color component (in [0, 255]).ArgumentIsOutOfRangeException
- if the given greenValue is not a true color component (in [0, 255]).ArgumentIsOutOfRangeException
- if the given blueValue is not a true color component (in [0, 255]).ArgumentIsOutOfRangeException
- if the given alphaValue is not a true color component (in [0, 255]).
-
getAlphaPercentage
public double getAlphaPercentage()- Angegeben von:
getAlphaPercentage
in SchnittstelleIColor
- Gibt zurück:
- the alpha value of the current
IColor
as percentage. A percentage is a number in the range [0.0, 1.0].
-
getAlphaValue
public int getAlphaValue()- Angegeben von:
getAlphaValue
in SchnittstelleIColor
- Gibt zurück:
- the alpha value of the current
IColor
.
-
getAttributes
- Angegeben von:
getAttributes
in SchnittstelleIElement
- Gibt zurück:
- the attributes of the current
IElement
.
-
getBluePercentage
public double getBluePercentage()- Angegeben von:
getBluePercentage
in SchnittstelleIColor
- Gibt zurück:
- the blue value of the current
IColor
as percentage. A percentage is a number in the range [0.0, 1.0].
-
getBlueValue
public int getBlueValue()- Angegeben von:
getBlueValue
in SchnittstelleIColor
- Gibt zurück:
- the blue value of the current
IColor
.
-
getColorNameOrHexadecimalString
- Angegeben von:
getColorNameOrHexadecimalString
in SchnittstelleIColor
- Gibt zurück:
- the color name or a hexadecimal
String
representation of the currentIColor
.
-
getGreenPercentage
public double getGreenPercentage()- Angegeben von:
getGreenPercentage
in SchnittstelleIColor
- Gibt zurück:
- the green value of the current
IColor
as percentage. A percentage is a number in the range [0.0, 1.0].
-
getGreenValue
public int getGreenValue()- Angegeben von:
getGreenValue
in SchnittstelleIColor
- Gibt zurück:
- the green value of the current
IColor
.
-
getInvertedColor
- Angegeben von:
getInvertedColor
in SchnittstelleIColor
- Gibt zurück:
- the inverted
IColor
of the currentIColor
.
-
getRedPercentage
public double getRedPercentage()- Angegeben von:
getRedPercentage
in SchnittstelleIColor
- Gibt zurück:
- the red value of the current
IColor
as percentage. A percentage is a number in the range [0.0, 1.0].
-
getRedValue
public int getRedValue()- Angegeben von:
getRedValue
in SchnittstelleIColor
- Gibt zurück:
- the red value of the current
IColor
.
-
hasFullAlphaValue
public boolean hasFullAlphaValue()- Angegeben von:
hasFullAlphaValue
in SchnittstelleIColor
- Gibt zurück:
- true if the current
IColor
has a full alpha value.
-
hasFullBlueValue
public boolean hasFullBlueValue()- Angegeben von:
hasFullBlueValue
in SchnittstelleIColor
- Gibt zurück:
- true if the current
IColor
has a full blue value.
-
hasFullGreenValue
public boolean hasFullGreenValue()- Angegeben von:
hasFullGreenValue
in SchnittstelleIColor
- Gibt zurück:
- true if the current
IColor
has a full green value.
-
hasFullRedValue
public boolean hasFullRedValue()- Angegeben von:
hasFullRedValue
in SchnittstelleIColor
- Gibt zurück:
- true if the current
IColor
has a full red value.
-
toAlphaRedGreenBlueInt
public int toAlphaRedGreenBlueInt()- Angegeben von:
toAlphaRedGreenBlueInt
in SchnittstelleIColor
- Gibt zurück:
- an integer representation of the current
IColor
with the schema alpha-red-green-blue.
-
toHexadecimalString
- Angegeben von:
toHexadecimalString
in SchnittstelleIColor
- Gibt zurück:
- a hexadecimal
String
representation of the currentIColor
.
-
toHexadecimalStringWithAlphaValue
- Angegeben von:
toHexadecimalStringWithAlphaValue
in SchnittstelleIColor
- Gibt zurück:
- a hexadecimal with alpha value
String
representation of the currentIColor
.
-
toLong
public long toLong() -
withFloatingPointAlphaValue
- Angegeben von:
withFloatingPointAlphaValue
in SchnittstelleIColor
- Parameter:
floatingPointAlphaValue
-- Gibt zurück:
- a new
IColor
from the currentIColor
with the given floatingPointAlphaValue.
-
withFullAlphaValue
- Angegeben von:
withFullAlphaValue
in SchnittstelleIColor
- Gibt zurück:
- a new
IColor
from the currentIColor
with a full alpha value.
-
withAlphaValue
- Angegeben von:
withAlphaValue
in SchnittstelleIColor
- Parameter:
alphaValue
-- Gibt zurück:
- a new
IColor
from the currentIColor
with the given alphaValue.
-