public static enum Cam.SCENE_MODE extends java.lang.Enum<Cam.SCENE_MODE>
| Enum Constant and Description |
|---|
ACTION
Take photos of fast moving objects.
|
AUTO
Scene mode is off.
|
BARCODE
Applications are looking for a barcode.
|
BEACH
Take pictures on the beach.
|
CANDLELIGHT
Capture the naturally warm color of scenes lit by candles.
|
FIREWORKS
For shooting firework displays.
|
HDR
Capture a scene using high dynamic range imaging techniques.
|
LANDSCAPE
Take pictures on distant objects.
|
NIGHT |
NIGHT_PORTRAIT
Take people pictures at night.
|
PARTY
Take indoor low-light shot.
|
PORTRAIT
Take people pictures.
|
SNOW
Take pictures on the snow.
|
SPORTS
Take photos of fast moving objects.
|
STEADY_PHOTO
Avoid blurry pictures (for example, due to hand shake).
|
SUNSET
Take sunset photos.
|
THEATRE
Take photos in a theater.
|
| Modifier and Type | Method and Description |
|---|---|
static Cam.SCENE_MODE |
get(java.lang.String string) |
static Cam.SCENE_MODE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cam.SCENE_MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cam.SCENE_MODE AUTO
public static final Cam.SCENE_MODE ACTION
SPORTS.public static final Cam.SCENE_MODE PORTRAIT
public static final Cam.SCENE_MODE LANDSCAPE
public static final Cam.SCENE_MODE NIGHT
public static final Cam.SCENE_MODE NIGHT_PORTRAIT
public static final Cam.SCENE_MODE THEATRE
public static final Cam.SCENE_MODE BEACH
public static final Cam.SCENE_MODE SNOW
public static final Cam.SCENE_MODE SUNSET
public static final Cam.SCENE_MODE STEADY_PHOTO
public static final Cam.SCENE_MODE FIREWORKS
public static final Cam.SCENE_MODE SPORTS
ACTION.public static final Cam.SCENE_MODE PARTY
public static final Cam.SCENE_MODE CANDLELIGHT
public static final Cam.SCENE_MODE BARCODE
public static final Cam.SCENE_MODE HDR
public static Cam.SCENE_MODE[] values()
for (Cam.SCENE_MODE c : Cam.SCENE_MODE.values()) System.out.println(c);
public static Cam.SCENE_MODE 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 nullpublic static Cam.SCENE_MODE get(java.lang.String string)