Uses of Class
de.xima.fc.common.graphdot.Color
-
Packages that use Color Package Description de.xima.fc.common.graphdot Package with tools for working with the graph dot language. -
-
Uses of Color in de.xima.fc.common.graphdot
Classes in de.xima.fc.common.graphdot with type parameters of type Color Modifier and Type Interface Description static interfaceAttributeListBuilder.IMixinColor<A extends AttributeListBuilder.ITypedAttribute<Color>>Mixin for attributes that accept a single color.Methods in de.xima.fc.common.graphdot that return Color Modifier and Type Method Description static ColorColor. custom(CharSequence color)Creates a custom color.ColorWeighedColor. 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 Color Modifier and Type Method Description static ColorListColorList. equidistant(Color... colors)Creates a list of equidistant weighed colors.default AAttributeListBuilder.IMixinColorList. multiple(Color... colors)Uses a list of color, such as for linear or radial gradients.static ColorListColorList. multiple(Color... colors)Creates a color list with the given colors.default AAttributeListBuilder.IMixinColorList. one(Color color)Uses single color only.static ColorListColorList. one(Color color)Creates a color list with a single colors.default AAttributeListBuilder.IMixinColorList. two(Color color1, Color color2)Uses a list of color, such as for linear or radial gradients.static ColorListColorList. two(Color color1, Color color2)Creates a color list with the given colors.static WeighedColorWeighedColor. unweighed(Color color)Creates new color with no weight.static WeighedColorWeighedColor. weighed(Color color, double weight)Creates new color with the given weight.Method parameters in de.xima.fc.common.graphdot with type arguments of type Color Modifier and Type Method Description static ColorListColorList. equidistant(Iterable<? extends Color> colors)Creates a list of equidistant weighed colors from unweighed colors.default AAttributeListBuilder.IMixinColorList. multiple(Iterable<? extends Color> colors)Uses a list of color, such as for linear or radial gradients.static ColorListColorList. multiple(Iterable<? extends Color> colors)Creates a color list with the given colors.static ColorListColorList. multiple(Iterator<? extends Color> colors)Creates a color list with the given colors.Constructors in de.xima.fc.common.graphdot with parameters of type Color Constructor Description WeighedColor(Color color, Double weight)Creates a new weighted color with the given weight.
-