public final class RGBA extends Object implements Serializable
The hashCode() method in this class uses the values of the public fields to compute the hash value. When storing instances of the class in hashed collections, do not modify these fields after the object has been inserted.
Application code does not need to explicitly release the
resources managed by each instance when those instances are no longer
required, and thus no dispose()
method is provided.
Color
,
Color and RGB snippets,
Sample code and further information,
Serialized FormModifier and Type | Field and Description |
---|---|
int |
alpha
the alpha component of the RGBA
|
RGB |
rgb
the RGB component of the RGBA
|
Constructor and Description |
---|
RGBA(float hue,
float saturation,
float brightness,
float alpha)
Constructs an instance of this class with the given
hue, saturation, and brightness.
|
RGBA(int red,
int green,
int blue,
int alpha)
Constructs an instance of this class with the given
red, green, blue and alpha values.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object object)
Compares the argument to the receiver, and returns true
if they represent the same object using a class
specific comparison.
|
float[] |
getHSBA()
Returns the hue, saturation, and brightness of the color.
|
int |
hashCode()
Returns an integer hash code for the receiver.
|
String |
toString()
Returns a string containing a concise, human-readable
description of the receiver.
|
public final RGB rgb
public int alpha
public RGBA(int red, int green, int blue, int alpha)
red
- the red component of the new instancegreen
- the green component of the new instanceblue
- the blue component of the new instancealpha
- the alpha component of the new instanceIllegalArgumentException
- public RGBA(float hue, float saturation, float brightness, float alpha)
hue
- the hue value for the HSBA color (from 0 to 360)saturation
- the saturation value for the HSBA color (from 0 to 1)brightness
- the brightness value for the HSBA color (from 0 to 1)alpha
- the alpha value for the HSBA color (from 0 to 255)IllegalArgumentException
- public float[] getHSBA()
RGBA(float, float, float, float)
public boolean equals(Object object)
equals
in class Object
object
- the object to compare with this objecttrue
if the object is the same as this object and false
otherwisehashCode()
public int hashCode()
true
when passed to
equals
must return the same value for this
method.hashCode
in class Object
equals(Object)
Copyright © 2017. All Rights Reserved.