public enum WhiteBalance extends java.lang.Enum<WhiteBalance>
| Enum Constant and Description |
|---|
AUTO |
CLOUDY_DAYLIGHT |
DAYLIGHT |
FLUORESCENT |
INCANDESCENT |
SHADE |
TWILIGHT |
WARM_FLUORESCENT |
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String[] |
FALLBACK_LIST |
java.lang.String |
value |
| Modifier and Type | Method and Description |
|---|---|
static WhiteBalance |
get(java.lang.String string) |
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
public static final WhiteBalance INCANDESCENT
public static final WhiteBalance FLUORESCENT
public static final WhiteBalance WARM_FLUORESCENT
public static final WhiteBalance DAYLIGHT
public static final WhiteBalance CLOUDY_DAYLIGHT
public static final WhiteBalance TWILIGHT
public static final WhiteBalance SHADE
public static final java.lang.String[] FALLBACK_LIST
public final java.lang.String value
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 static WhiteBalance get(java.lang.String string)