public enum WhiteBalance extends java.lang.Enum<WhiteBalance> implements Control
CameraView.setWhiteBalance(WhiteBalance)| Enum Constant and Description |
|---|
AUTO
Automatic white balance selection (AWB).
|
CLOUDY
White balance appropriate for pictures in cloudy conditions.
|
DAYLIGHT
White balance appropriate for daylight captures.
|
FLUORESCENT
White balance appropriate for fluorescent light.
|
INCANDESCENT
White balance appropriate for incandescent light.
|
| Modifier and Type | Method and Description |
|---|---|
static WhiteBalance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WhiteBalance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WhiteBalance AUTO
CameraOptions.getSupportedWhiteBalance()public static final WhiteBalance INCANDESCENT
CameraOptions.getSupportedWhiteBalance()public static final WhiteBalance FLUORESCENT
CameraOptions.getSupportedWhiteBalance()public static final WhiteBalance DAYLIGHT
CameraOptions.getSupportedWhiteBalance()public static final WhiteBalance CLOUDY
CameraOptions.getSupportedWhiteBalance()public static WhiteBalance[] values()
for (WhiteBalance c : WhiteBalance.values()) System.out.println(c);
public static WhiteBalance 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