public static enum RawCameraControl.EffectMode extends Enum<RawCameraControl.EffectMode>
| Enum Constant and Description |
|---|
AQUA
An "aqua" effect where a blue hue is added to the image.
|
BLACKBOARD
A "blackboard" effect where the image is typically displayed as regions of black, with white or grey details.
|
MONO
A "monocolor" effect where the image is mapped into a single color.
|
NEGATIVE
A "photo-negative" effect where the image's colors are inverted.
|
OFF
No color effect will be applied.
|
POSTERIZE
A "posterization" effect where the image uses discrete regions of tone rather than a continuous gradient of tones.
|
SEPIA
A "sepia" effect where the image is mapped into warm gray, red, and brown tones.
|
SOLARIZE
A "solarisation" effect (Sabattier effect) where the image is wholly or partially reversed in tone.
|
WHITEBOARD
A "whiteboard" effect where the image is typically displayed as regions of white, with black or grey details.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
RawCameraControl.EffectMode |
intern() |
String |
toString() |
static RawCameraControl.EffectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RawCameraControl.EffectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RawCameraControl.EffectMode OFF
public static final RawCameraControl.EffectMode MONO
public static final RawCameraControl.EffectMode NEGATIVE
public static final RawCameraControl.EffectMode SOLARIZE
public static final RawCameraControl.EffectMode SEPIA
public static final RawCameraControl.EffectMode POSTERIZE
public static final RawCameraControl.EffectMode WHITEBOARD
public static final RawCameraControl.EffectMode BLACKBOARD
public static final RawCameraControl.EffectMode AQUA
public static RawCameraControl.EffectMode[] values()
for (RawCameraControl.EffectMode c : RawCameraControl.EffectMode.values()) System.out.println(c);
public static RawCameraControl.EffectMode 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 RawCameraControl.EffectMode intern()
public String toString()
toString in class Enum<RawCameraControl.EffectMode>Copyright © 2023. All rights reserved.