public enum BlendMode extends Enum<BlendMode>
Enum Constant and Description |
---|
COLOR |
COLOR_BURN |
COLOR_DODGE |
DARKEN |
DIFFERENCE |
EXCLUSION |
HARD_LIGHT |
HUE |
LIGHTEN |
LUMINOSITY |
MULTIPLY |
NORMAL |
OVERLAY |
SATURATION |
SCREEN |
SOFT_LIGHT |
Modifier and Type | Method and Description |
---|---|
PdfName |
getPdfRepresentation()
Get the pdf representation of the current blend mode.
|
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
public static final BlendMode MULTIPLY
public static final BlendMode SCREEN
public static final BlendMode OVERLAY
public static final BlendMode DARKEN
public static final BlendMode LIGHTEN
public static final BlendMode COLOR_DODGE
public static final BlendMode COLOR_BURN
public static final BlendMode HARD_LIGHT
public static final BlendMode SOFT_LIGHT
public static final BlendMode DIFFERENCE
public static final BlendMode EXCLUSION
public static final BlendMode HUE
public static final BlendMode SATURATION
public static final BlendMode COLOR
public static final BlendMode LUMINOSITY
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 name
NullPointerException
- if the argument is null
Copyright © 1998–2023 iText Group NV. All rights reserved.