@Deprecated public static enum ProfileConfig.VIEWFINDER_MODE extends java.lang.Enum<ProfileConfig.VIEWFINDER_MODE>
Example Usage: VIEWFINDER_MODE.ENABLED;
| Enum Constant and Description |
|---|
DEFAULT
Deprecated.
Default view finder mode configured on the device
|
DISABLED
Deprecated.
Viewfinder disabled.
|
ENABLED
Deprecated.
Viewfinder enabled.
|
STATIC_RECTICLE
Deprecated.
Viewfinder enabled with locate reticle.
|
| Modifier and Type | Method and Description |
|---|---|
static ProfileConfig.VIEWFINDER_MODE |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.VIEWFINDER_MODE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.VIEWFINDER_MODE DEFAULT
public static final ProfileConfig.VIEWFINDER_MODE DISABLED
public static final ProfileConfig.VIEWFINDER_MODE ENABLED
public static final ProfileConfig.VIEWFINDER_MODE STATIC_RECTICLE
public static ProfileConfig.VIEWFINDER_MODE[] values()
for (ProfileConfig.VIEWFINDER_MODE c : ProfileConfig.VIEWFINDER_MODE.values()) System.out.println(c);
public static ProfileConfig.VIEWFINDER_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 null