Package com.esri.arcgisruntime.symbology
Class ColorUtil
- java.lang.Object
-
- com.esri.arcgisruntime.symbology.ColorUtil
-
public final class ColorUtil extends Object
Provides convenience methods for converting Java FX Color objects to integer representations in the format 0xAARRGGBB and vice versa.- Since:
- 100.0.0
-
-
Constructor Summary
Constructors Constructor Description ColorUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ColorargbToColor(int argb)Converts the specified integer color in the format 0xAARRGGBB to a Java FX Color object.static intcolorToArgb(Color color)Converts the specified Color object to an integer representation in the format 0xAARRGGBB.
-
-
-
Method Detail
-
colorToArgb
public static int colorToArgb(Color color)
Converts the specified Color object to an integer representation in the format 0xAARRGGBB.- Parameters:
color- the Color object to convert- Returns:
- an integer representation of the Java FX Color object
- Throws:
IllegalArgumentException- if color is null- Since:
- 100.0.0
-
argbToColor
public static Color argbToColor(int argb)
Converts the specified integer color in the format 0xAARRGGBB to a Java FX Color object.- Parameters:
argb- the integer color to convert- Returns:
- the Java FX Color object corresponding to the integer color
- Since:
- 100.0.0
-
-