public enum BlendingMode extends java.lang.Enum<BlendingMode>
Enum Constant and Description |
---|
AverageBlending |
MaxBlending |
MinBlending |
MosaicBlending |
NoBlending |
Modifier and Type | Method and Description |
---|---|
static BlendingMode |
valueOf(java.lang.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 NoBlending
public static final BlendingMode AverageBlending
public static final BlendingMode MosaicBlending
public static final BlendingMode MinBlending
public static final BlendingMode MaxBlending
public static BlendingMode[] values()
for (BlendingMode c : BlendingMode.values()) System.out.println(c);
public static BlendingMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null