public enum BlendingMode extends Enum<BlendingMode>
The blending mode
| Enum Constant and Description |
|---|
COLOR
The color mode
|
COLOR_BURN
The color burn
|
COLOR_DODGE
The color dodge
|
DARKEN
The darken
|
DIFFERENCE
The difference
|
EXCLUSION
The exclusion
|
HARD_LIGHT
The hard light
|
HUE
The hue mode
|
LIGHTEN
The lighten
|
LUMINOSITY
The luminosity
|
MULTIPLY
The multiply
|
NORMAL
The normal
|
OVERLAY
The overlay
|
SATURATION
The saturation
|
SCREEN
The screen
|
SOFT_LIGHT
The soft light
|
| Modifier and Type | Method and Description |
|---|---|
static BlendingMode |
get(int value) |
static BlendingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlendingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlendingMode NORMAL
The normal
public static final BlendingMode MULTIPLY
The multiply
public static final BlendingMode SCREEN
The screen
public static final BlendingMode OVERLAY
The overlay
public static final BlendingMode DARKEN
The darken
public static final BlendingMode LIGHTEN
The lighten
public static final BlendingMode COLOR_DODGE
The color dodge
public static final BlendingMode COLOR_BURN
The color burn
public static final BlendingMode HARD_LIGHT
The hard light
public static final BlendingMode SOFT_LIGHT
The soft light
public static final BlendingMode DIFFERENCE
The difference
public static final BlendingMode EXCLUSION
The exclusion
public static final BlendingMode HUE
The hue mode
public static final BlendingMode SATURATION
The saturation
public static final BlendingMode COLOR
The color mode
public static final BlendingMode LUMINOSITY
The luminosity
public static BlendingMode[] values()
for (BlendingMode c : BlendingMode.values()) System.out.println(c);
public static BlendingMode 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 static BlendingMode get(int value)
Copyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.