- All Implemented Interfaces:
Colors,Serializable,Comparable<FlatUIColors>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe color ALIZARIN with an RGB value of colorToRGB(234, 111, 99).The color AMETHYST with an RGB value of colorToRGB(175, 122, 196).The color ASBESTOS with an RGB value of colorToRGB(127, 140, 141).The color BELIZE_HOLE with an RGB value of colorToRGB(83, 153, 198).The color CARROT with an RGB value of colorToRGB(245, 175, 65).The color CLOUDS with an RGB value of colorToRGB(239, 243, 243).The color CONCRETE with an RGB value of colorToRGB(149, 165, 166).The color EMERLAND with an RGB value of colorToRGB(87, 214, 141).The color GREEN SEA with an RGB value of colorToRGB(26, 160, 133).The color MIDNIGHT BLUE with an RGB value of colorToRGB(44, 62, 80).The color NEPHRITIS with an RGB value of colorToRGB(39, 174, 96).The color ORANGE with an RGB value of colorToRGB(245, 175, 65).The color PETER RIVER with an RGB value of colorToRGB(92, 172, 226).The color POMEGRANATE with an RGB value of colorToRGB(204, 96, 85).The color PUMPKIN with an RGB value of colorToRGB(211, 85, 25).The color SILVER with an RGB value of colorToRGB(189, 195, 199).The color SUNFLOWER with an RGB value of colorToRGB(241, 196, 40).The color TURQOISE with an RGB value of colorToRGB(31, 188, 156).The color WET ASPHALT with an RGB value of colorToRGB(52, 73, 94).The color WISTERIA with an RGB value of colorToRGB(142, 68, 173). -
Method Summary
Modifier and TypeMethodDescriptionjavafx.scene.paint.Colorget()Returns the corresponding JavaFX color.rgb()Returns a String expression from the color with the format: colorToRGB(12, 121, 15)rgba(double OPACITY) Returns a String expression from the color and opacity with the format: colorToRGBA(12, 121, 15, 0.5)static FlatUIColorsReturns the enum constant of this class with the specified name.static FlatUIColors[]values()Returns an array containing the constants of this enum class, in the order they are declared.web()Returns a String expression from the color with the format: #AB12CD
-
Enum Constant Details
-
TURQOISE
The color TURQOISE with an RGB value of colorToRGB(31, 188, 156). -
GREEN_SEA
The color GREEN SEA with an RGB value of colorToRGB(26, 160, 133). -
EMERLAND
The color EMERLAND with an RGB value of colorToRGB(87, 214, 141). -
NEPHRITIS
The color NEPHRITIS with an RGB value of colorToRGB(39, 174, 96). -
PETER_RIVER
The color PETER RIVER with an RGB value of colorToRGB(92, 172, 226). -
BELIZE_HOLE
The color BELIZE_HOLE with an RGB value of colorToRGB(83, 153, 198). -
AMETHYST
The color AMETHYST with an RGB value of colorToRGB(175, 122, 196). -
WISTERIA
The color WISTERIA with an RGB value of colorToRGB(142, 68, 173). -
SUNFLOWER
The color SUNFLOWER with an RGB value of colorToRGB(241, 196, 40). -
ORANGE
The color ORANGE with an RGB value of colorToRGB(245, 175, 65). -
CARROT
The color CARROT with an RGB value of colorToRGB(245, 175, 65). -
PUMPKIN
The color PUMPKIN with an RGB value of colorToRGB(211, 85, 25). -
ALIZARIN
The color ALIZARIN with an RGB value of colorToRGB(234, 111, 99). -
POMEGRANATE
The color POMEGRANATE with an RGB value of colorToRGB(204, 96, 85). -
CLOUDS
The color CLOUDS with an RGB value of colorToRGB(239, 243, 243). -
SILVER
The color SILVER with an RGB value of colorToRGB(189, 195, 199). -
CONCRETE
The color CONCRETE with an RGB value of colorToRGB(149, 165, 166). -
ASBESTOS
The color ASBESTOS with an RGB value of colorToRGB(127, 140, 141). -
WET_ASPHALT
The color WET ASPHALT with an RGB value of colorToRGB(52, 73, 94). -
MIDNIGHT_BLUE
The color MIDNIGHT BLUE with an RGB value of colorToRGB(44, 62, 80).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
get
public javafx.scene.paint.Color get()Description copied from interface:ColorsReturns the corresponding JavaFX color. -
rgb
Description copied from interface:ColorsReturns a String expression from the color with the format: colorToRGB(12, 121, 15) -
rgba
Description copied from interface:ColorsReturns a String expression from the color and opacity with the format: colorToRGBA(12, 121, 15, 0.5) -
web
Description copied from interface:ColorsReturns a String expression from the color with the format: #AB12CD
-