public enum WhiteBalance extends java.lang.Enum<WhiteBalance>
Enum Constant and Description |
---|
AUTO
Automatic
|
CLOUDY
Cloudy
|
COOL_WHITE_FLUORESCENT_LAMP
Fluorescent lamp 3 (White)
|
DAYLIGHT
Daylight
|
DAYLIGHT_FLUORESCENT_LAMP
Fluorescent lamp 1 (Daylight color)
|
IN_SHADE
Shade
|
INCANDESCENT_LAMP_1
Incandescent lamp 1
|
INCANDESCENT_LAMP_2
Incandescent lamp 2
|
LIGHT_BULB
Fluorescent lamp 4 (Light bulb color)
|
NATURAL_WHITE_FLUORESCENT_LAMP
Fluorescent lamp 2 (Neutral white color)
|
Modifier and Type | Method and Description |
---|---|
UINT16 |
value() |
static WhiteBalance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WhiteBalance |
valueOf(UINT16 value) |
static WhiteBalance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WhiteBalance AUTO
public static final WhiteBalance DAYLIGHT
public static final WhiteBalance IN_SHADE
public static final WhiteBalance CLOUDY
public static final WhiteBalance INCANDESCENT_LAMP_1
public static final WhiteBalance INCANDESCENT_LAMP_2
public static final WhiteBalance DAYLIGHT_FLUORESCENT_LAMP
public static final WhiteBalance NATURAL_WHITE_FLUORESCENT_LAMP
public static final WhiteBalance COOL_WHITE_FLUORESCENT_LAMP
public static final WhiteBalance LIGHT_BULB
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 nullpublic UINT16 value()
public static WhiteBalance valueOf(UINT16 value)