Uses of Class
de.xima.fc.common.graphdot.Color
Packages that use Color
Package
Description
Package with tools for working with the graph dot language.
See
GraphDotElementFactory for creating graph dot elements.-
Uses of Color in de.xima.fc.common.graphdot
Classes in de.xima.fc.common.graphdot with type parameters of type ColorModifier and TypeInterfaceDescriptionstatic interfaceMixin for attributes that accept a single color.Subclasses with type arguments of type Color in de.xima.fc.common.graphdotModifier and TypeClassDescriptionstatic final classThefontcolorattribute.static final classThelabelfontcolorattribute.static final classThepencolorattribute.Subinterfaces with type arguments of type Color in de.xima.fc.common.graphdotModifier and TypeInterfaceDescriptionstatic interfaceMixin for attributes that accept a single color.Classes in de.xima.fc.common.graphdot that implement interfaces with type arguments of type ColorModifier and TypeClassDescriptionstatic final classThefontcolorattribute.static final classThelabelfontcolorattribute.static final classThepencolorattribute.Methods in de.xima.fc.common.graphdot that return ColorModifier and TypeMethodDescriptionstatic ColorColor.custom(CharSequence color) Creates a custom color.WeighedColor.getColor()static ColorColor.hsv(double hue, double saturation, double value) Creates an HSV color.static ColorColor.hsv(long hsv) Creates an HSV color.static ColorColor.hsv(long hue, long saturation, long value) Creates an HSV color.static ColorColor.hsva(double hue, double saturation, double value, double alpha) Creates an HSVA color.static ColorColor.hsva(long hsva) Creates an HSVA color.static ColorColor.hsva(long hue, long saturation, long value, long alpha) Creates an HSVA color.static ColorColor.rgb(double red, double green, double blue) Creates an RGB color.static ColorColor.rgb(long rgb) Creates an RGB color.static ColorColor.rgb(long red, long green, long blue) Creates an RGB color.static ColorColor.rgba(double red, double green, double blue, double alpha) Creates an RGBA color.static ColorColor.rgba(long rgba) Creates an RGBA color.static ColorColor.rgba(long rgb, double alpha) Creates a new color from the given RGB pair and with the given alpha value.static ColorColor.rgba(long red, long green, long blue, long alpha) Creates an RGBA color.static ColorColor.svg(EColorSchemeSvg color) Uses a color from the SVG color scheme.static ColorColor.x11(EColorSchemeX11 color) Uses a color from the X11 color scheme.Methods in de.xima.fc.common.graphdot with parameters of type ColorModifier and TypeMethodDescriptionstatic ColorListColorList.equidistant(Color... colors) Creates a list of equidistant weighed colors.default AUses a list of color, such as for linear or radial gradients.static ColorListCreates a color list with the given colors.default AUses single color only.static ColorListCreates a color list with a single colors.default AUses a list of color, such as for linear or radial gradients.static ColorListCreates a color list with the given colors.static WeighedColorCreates new color with no weight.static WeighedColorCreates new color with the given weight.Method parameters in de.xima.fc.common.graphdot with type arguments of type ColorModifier and TypeMethodDescriptionstatic ColorListColorList.equidistant(Iterable<? extends Color> colors) Creates a list of equidistant weighed colors from unweighed colors.default AUses a list of color, such as for linear or radial gradients.static ColorListCreates a color list with the given colors.static ColorListCreates a color list with the given colors.Constructors in de.xima.fc.common.graphdot with parameters of type ColorModifierConstructorDescriptionWeighedColor(Color color, Double weight) Creates a new weighted color with the given weight.