Class ColorUIResource

All Implemented Interfaces:
Paint, Transparency, Serializable, UIResource
public class ColorUIResource
extends Color
implements UIResource

A subclass of Color that implements UIResource. UI classes that create colors should use this class.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beans package. Please see XMLEncoder.

See Also:
UIResource, Serialized Form

Fields

Fields declared in class java.awt.Color

black, BLACK, blue, BLUE, cyan, CYAN, DARK_GRAY, darkGray, gray, GRAY, green, GREEN, LIGHT_GRAY, lightGray, magenta, MAGENTA, orange, ORANGE, pink, PINK, red, RED, white, WHITE, yellow, YELLOW

Fields declared in interface java.awt.Transparency

BITMASK, OPAQUE, TRANSLUCENT

Constructors

Constructor Description
ColorUIResource​(float r, float g, float b)

Constructs a ColorUIResource.

ColorUIResource​(int rgb)

Constructs a ColorUIResource.

ColorUIResource​(int r, int g, int b)

Constructs a ColorUIResource.

ColorUIResource​(Color c)

Constructs a ColorUIResource.

Methods

Methods declared in class java.awt.Color

brighter, createContext, darker, decode, equals, getAlpha, getBlue, getColor, getColor, getColor, getColorComponents, getColorComponents, getColorSpace, getComponents, getComponents, getGreen, getHSBColor, getRed, getRGB, getRGBColorComponents, getRGBComponents, getTransparency, hashCode, HSBtoRGB, RGBtoHSB, toString

Methods declared in class java.lang.Object

clone, finalize, getClass, notify, notifyAll, wait, wait, wait

Constructors

ColorUIResource

@ConstructorProperties({"red","green","blue"})
public ColorUIResource(int r,
                       int g,
                       int b)

Constructs a ColorUIResource.

Parameters:
r - the red component
g - the green component
b - the blue component

ColorUIResource

public ColorUIResource(int rgb)

Constructs a ColorUIResource.

Parameters:
rgb - the combined RGB components

ColorUIResource

public ColorUIResource(float r,
                       float g,
                       float b)

Constructs a ColorUIResource.

Parameters:
r - the red component
g - the green component
b - the blue component

ColorUIResource

public ColorUIResource(Color c)

Constructs a ColorUIResource.

Parameters:
c - the color

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/plaf/ColorUIResource.html