- All Implemented Interfaces:
Colors,Serializable,Comparable<SocialColors>,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 BEHANCE with an RGB value of colorToRGB(19,20,24).The color DRIBBLE with an RGB value of colorToRGB(234,76,137).The color FACEBOOK with an RGB value of colorToRGB(59,89,153).The color FLICKR with an RGB value of colorToRGB(255,0,132).The color FOUR SQUARE with an RGB value of colorToRGB(249,72,119).The color GOOGLE PLUS with an RGB value of colorToRGB(220,78,65).The color HACKER NEWS with an RGB value of colorToRGB(255,102,0).The color INSTAGRAM with an RGB value of colorToRGB().The color LINKED IN with an RGB value of colorToRGB(0,119,181).The color MEDIUM with an RGB value of colorToRGB(2,184,117).The color PINTEREST with an RGB value of colorToRGB(189,8,28).The color PRODUCT HUNT with an RGB value of colorToRGB(218,85,47).The color QUORA with an RGB value of colorToRGB(185,43,39).The color REDDIT with an RGB value of colorToRGB(255,87,0).The color SKYPE with an RGB value of colorToRGB(0,175,240).The color SLACK with an RGB value of colorToRGB(58,175,133).The color SLIDE_SHARE with an RGB value of colorToRGB(0,119,181).The color SNAP CHAT with an RGB value of colorToRGB(255,252,0).The color STUMBLE UPON with an RGB value of colorToRGB(235,73,36).The color TUMBLR with an RGB value of colorToRGB(52,70,93).The color TWITTER with an RGB value of colorToRGB(85,172,238).The color VIMEO with an RGB value of colorToRGB(26,183,234).The color VINE with an RGB value of colorToRGB(0,180,137).The color VK with an RGB value of colorToRGB(76,117,163).The color WE CHAT with an RGB value of colorToRGB(9,184,62).The color WEIBO with an RGB value of colorToRGB(223,32,41).The color WHATS APP with an RGB value of colorToRGB(37,211,102).The color WORDPRESS with an RGB value of colorToRGB(33,117,155).The color YAHOO with an RGB value of colorToRGB(65,0,147).The color YOUTUBE with an RGB value of colorToRGB(229,45,39). -
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 SocialColorsReturns the enum constant of this class with the specified name.static SocialColors[]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
-
FACEBOOK
The color FACEBOOK with an RGB value of colorToRGB(59,89,153). -
TWITTER
The color TWITTER with an RGB value of colorToRGB(85,172,238). -
LINKED_IN
The color LINKED IN with an RGB value of colorToRGB(0,119,181). -
TUMBLR
The color TUMBLR with an RGB value of colorToRGB(52,70,93). -
YAHOO
The color YAHOO with an RGB value of colorToRGB(65,0,147). -
INSTAGRAM
The color INSTAGRAM with an RGB value of colorToRGB(). -
SKYPE
The color SKYPE with an RGB value of colorToRGB(0,175,240). -
WORDPRESS
The color WORDPRESS with an RGB value of colorToRGB(33,117,155). -
VIMEO
The color VIMEO with an RGB value of colorToRGB(26,183,234). -
VK
The color VK with an RGB value of colorToRGB(76,117,163). -
SLIDE_SHARE
The color SLIDE_SHARE with an RGB value of colorToRGB(0,119,181). -
GOOGLE_PLUS
The color GOOGLE PLUS with an RGB value of colorToRGB(220,78,65). -
PINTEREST
The color PINTEREST with an RGB value of colorToRGB(189,8,28). -
YOUTUBE
The color YOUTUBE with an RGB value of colorToRGB(229,45,39). -
STUMBLE_UPON
The color STUMBLE UPON with an RGB value of colorToRGB(235,73,36). -
REDDIT
The color REDDIT with an RGB value of colorToRGB(255,87,0). -
QUORA
The color QUORA with an RGB value of colorToRGB(185,43,39). -
WEIBO
The color WEIBO with an RGB value of colorToRGB(223,32,41). -
PRODUCT_HUNT
The color PRODUCT HUNT with an RGB value of colorToRGB(218,85,47). -
HACKER_NEWS
The color HACKER NEWS with an RGB value of colorToRGB(255,102,0). -
WHATS_APP
The color WHATS APP with an RGB value of colorToRGB(37,211,102). -
WE_CHAT
The color WE CHAT with an RGB value of colorToRGB(9,184,62). -
MEDIUM
The color MEDIUM with an RGB value of colorToRGB(2,184,117). -
VINE
The color VINE with an RGB value of colorToRGB(0,180,137). -
SLACK
The color SLACK with an RGB value of colorToRGB(58,175,133). -
DRIBBLE
The color DRIBBLE with an RGB value of colorToRGB(234,76,137). -
FLICKR
The color FLICKR with an RGB value of colorToRGB(255,0,132). -
FOUR_SQUARE
The color FOUR SQUARE with an RGB value of colorToRGB(249,72,119). -
BEHANCE
The color BEHANCE with an RGB value of colorToRGB(19,20,24). -
SNAP_CHAT
The color SNAP CHAT with an RGB value of colorToRGB(255,252,0).
-
-
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
-