public static enum Cam.WHITE_BALANCE extends java.lang.Enum<Cam.WHITE_BALANCE>
| Enum Constant and Description |
|---|
AUTO |
CLOUDY_DAYLIGHT |
DAYLIGHT |
FLUORESCENT |
INCANDESCENT |
SHADE |
TWILIGHT |
WARM_FLUORESCENT |
| Modifier and Type | Method and Description |
|---|---|
static Cam.WHITE_BALANCE |
get(java.lang.String string) |
static Cam.WHITE_BALANCE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cam.WHITE_BALANCE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cam.WHITE_BALANCE AUTO
public static final Cam.WHITE_BALANCE INCANDESCENT
public static final Cam.WHITE_BALANCE FLUORESCENT
public static final Cam.WHITE_BALANCE WARM_FLUORESCENT
public static final Cam.WHITE_BALANCE DAYLIGHT
public static final Cam.WHITE_BALANCE CLOUDY_DAYLIGHT
public static final Cam.WHITE_BALANCE TWILIGHT
public static final Cam.WHITE_BALANCE SHADE
public static Cam.WHITE_BALANCE[] values()
for (Cam.WHITE_BALANCE c : Cam.WHITE_BALANCE.values()) System.out.println(c);
public static Cam.WHITE_BALANCE 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.WHITE_BALANCE get(java.lang.String string)