public enum MapBlendMode extends Enum<MapBlendMode>
Enum Constant and Description |
---|
ADD |
AVERAGE |
MULTIPLY |
NONE |
OVERLAY |
SUBTRACT |
Modifier and Type | Method and Description |
---|---|
void |
process(byte[] input,
byte[] output) |
byte |
process(byte inputA,
byte inputB) |
void |
process(byte input,
byte[] output) |
static MapBlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapBlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapBlendMode NONE
public static final MapBlendMode OVERLAY
public static final MapBlendMode AVERAGE
public static final MapBlendMode ADD
public static final MapBlendMode SUBTRACT
public static final MapBlendMode MULTIPLY
public static MapBlendMode[] values()
for (MapBlendMode c : MapBlendMode.values()) System.out.println(c);
public static MapBlendMode 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 byte process(byte inputA, byte inputB)
public void process(byte input, byte[] output)
public void process(byte[] input, byte[] output)
Copyright © 2019. All rights reserved.