public enum STBlendMode extends Enum<STBlendMode>
Java class for ST_BlendMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_BlendMode">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="over"/>
<enumeration value="mult"/>
<enumeration value="screen"/>
<enumeration value="darken"/>
<enumeration value="lighten"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DARKEN
Darken
|
LIGHTEN
Lighten
|
MULT
Multiply
|
OVER
Overlay
|
SCREEN
Screen
|
| Modifier and Type | Method and Description |
|---|---|
static STBlendMode |
fromValue(String v) |
String |
value() |
static STBlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STBlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STBlendMode OVER
public static final STBlendMode MULT
public static final STBlendMode SCREEN
public static final STBlendMode DARKEN
public static final STBlendMode LIGHTEN
public static STBlendMode[] values()
for (STBlendMode c : STBlendMode.values()) System.out.println(c);
public static STBlendMode 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 String value()
public static STBlendMode fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.