public enum BlendMode extends Enum<BlendMode>
The blend modes enumeration.
Enum Constant and Description |
---|
Color
Color blend mode.
|
ColorBurn
ColorBurn blend mode.
|
ColorDodge
ColorDodge blend mode.
|
Compatible
Compatible blend mode.
|
Darken
Darken blend mode.
|
Difference
Difference blend mode.
|
Exclusion
Exclusion blend mode.
|
HardLight
HardLight blend mode.
|
Hue
Hue blend mode.
|
Lighten
Lighten blend mode.
|
Luminosity
Luminosity blend mode.
|
Multiply
Multiply blend mode.
|
Normal
Normal blend mode.
|
Overlay
Overlay blend mode.
|
Saturation
Saturation blend mode.
|
Screen
Screen blend mode.
|
SoftLight
SoftLight blend mode.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static BlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlendMode Normal
Normal blend mode.
public static final BlendMode Multiply
Multiply blend mode.
public static final BlendMode Screen
Screen blend mode.
public static final BlendMode Overlay
Overlay blend mode.
public static final BlendMode Darken
Darken blend mode.
public static final BlendMode Lighten
Lighten blend mode.
public static final BlendMode ColorDodge
ColorDodge blend mode.
public static final BlendMode ColorBurn
ColorBurn blend mode.
public static final BlendMode HardLight
HardLight blend mode.
public static final BlendMode SoftLight
SoftLight blend mode.
public static final BlendMode Difference
Difference blend mode.
public static final BlendMode Exclusion
Exclusion blend mode.
public static final BlendMode Hue
Hue blend mode.
public static final BlendMode Saturation
Saturation blend mode.
public static final BlendMode Color
Color blend mode.
public static final BlendMode Luminosity
Luminosity blend mode.
public static final BlendMode Compatible
Compatible blend mode.
public static BlendMode[] values()
for (BlendMode c : BlendMode.values()) System.out.println(c);
public static BlendMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
Copyright © 2025 Aspose. All Rights Reserved.