FocusMode
Enumeration FocusMode describes the focus mode.
@IntDef({FM_LOCKED,FM_CONTINUOUS_AUTO})
@Retention(RetentionPolicy.CLASS)
public @interface EnumFocusMode {
// Lock the focal length.
int FM_LOCKED = 1;
// Keep continuous auto-focus.
int FM_CONTINUOUS_AUTO = 2;
}