// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!!
#[cfg(any(feature = "all", feature = "android-app-SearchManager"))]
__jni_bindgen! {
/// public class [SearchManager](https://developer.android.com/reference/android/app/SearchManager.html)
///
/// Required feature: "android-app-SearchManager"
public class SearchManager ("android/app/SearchManager") extends crate::java::lang::Object, implements crate::android::content::DialogInterface_OnDismissListener, crate::android::content::DialogInterface_OnCancelListener {
/// [startSearch](https://developer.android.com/reference/android/app/SearchManager.html#startSearch(java.lang.String,%20boolean,%20android.content.ComponentName,%20android.os.Bundle,%20boolean))
///
/// Required features: "android-content-ComponentName", "android-os-Bundle", "java-lang-String"
#[cfg(any(feature = "all", all(feature = "android-content-ComponentName", feature = "android-os-Bundle", feature = "java-lang-String")))]
pub fn startSearch<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: bool, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::ComponentName>>, arg3: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>, arg4: bool) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "startSearch", .descriptor == "(Ljava/lang/String;ZLandroid/content/ComponentName;Landroid/os/Bundle;Z)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3.into()), __jni_bindgen::AsJValue::as_jvalue(&arg4)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "startSearch\0", "(Ljava/lang/String;ZLandroid/content/ComponentName;Landroid/os/Bundle;Z)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getGlobalSearchActivity](https://developer.android.com/reference/android/app/SearchManager.html#getGlobalSearchActivity())
///
/// Required features: "android-content-ComponentName"
#[cfg(any(feature = "all", all(feature = "android-content-ComponentName")))]
pub fn getGlobalSearchActivity<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::content::ComponentName>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "getGlobalSearchActivity", .descriptor == "()Landroid/content/ComponentName;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "getGlobalSearchActivity\0", "()Landroid/content/ComponentName;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [triggerSearch](https://developer.android.com/reference/android/app/SearchManager.html#triggerSearch(java.lang.String,%20android.content.ComponentName,%20android.os.Bundle))
///
/// Required features: "android-content-ComponentName", "android-os-Bundle", "java-lang-String"
#[cfg(any(feature = "all", all(feature = "android-content-ComponentName", feature = "android-os-Bundle", feature = "java-lang-String")))]
pub fn triggerSearch<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::ComponentName>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::os::Bundle>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "triggerSearch", .descriptor == "(Ljava/lang/String;Landroid/content/ComponentName;Landroid/os/Bundle;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "triggerSearch\0", "(Ljava/lang/String;Landroid/content/ComponentName;Landroid/os/Bundle;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [stopSearch](https://developer.android.com/reference/android/app/SearchManager.html#stopSearch())
pub fn stopSearch<'env>(&'env self) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "stopSearch", .descriptor == "()V"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "stopSearch\0", "()V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [setOnDismissListener](https://developer.android.com/reference/android/app/SearchManager.html#setOnDismissListener(android.app.SearchManager.OnDismissListener))
///
/// Required features: "android-app-SearchManager_OnDismissListener"
#[cfg(any(feature = "all", all(feature = "android-app-SearchManager_OnDismissListener")))]
pub fn setOnDismissListener<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::SearchManager_OnDismissListener>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "setOnDismissListener", .descriptor == "(Landroid/app/SearchManager$OnDismissListener;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "setOnDismissListener\0", "(Landroid/app/SearchManager$OnDismissListener;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [setOnCancelListener](https://developer.android.com/reference/android/app/SearchManager.html#setOnCancelListener(android.app.SearchManager.OnCancelListener))
///
/// Required features: "android-app-SearchManager_OnCancelListener"
#[cfg(any(feature = "all", all(feature = "android-app-SearchManager_OnCancelListener")))]
pub fn setOnCancelListener<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::app::SearchManager_OnCancelListener>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "setOnCancelListener", .descriptor == "(Landroid/app/SearchManager$OnCancelListener;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "setOnCancelListener\0", "(Landroid/app/SearchManager$OnCancelListener;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [onCancel](https://developer.android.com/reference/android/app/SearchManager.html#onCancel(android.content.DialogInterface))
///
/// Required features: "android-content-DialogInterface"
#[cfg(any(feature = "all", all(feature = "android-content-DialogInterface")))]
#[deprecated] pub fn onCancel<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::DialogInterface>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "onCancel", .descriptor == "(Landroid/content/DialogInterface;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "onCancel\0", "(Landroid/content/DialogInterface;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [onDismiss](https://developer.android.com/reference/android/app/SearchManager.html#onDismiss(android.content.DialogInterface))
///
/// Required features: "android-content-DialogInterface"
#[cfg(any(feature = "all", all(feature = "android-content-DialogInterface")))]
#[deprecated] pub fn onDismiss<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::DialogInterface>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "onDismiss", .descriptor == "(Landroid/content/DialogInterface;)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "onDismiss\0", "(Landroid/content/DialogInterface;)V\0");
__jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getSearchableInfo](https://developer.android.com/reference/android/app/SearchManager.html#getSearchableInfo(android.content.ComponentName))
///
/// Required features: "android-app-SearchableInfo", "android-content-ComponentName"
#[cfg(any(feature = "all", all(feature = "android-app-SearchableInfo", feature = "android-content-ComponentName")))]
pub fn getSearchableInfo<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::ComponentName>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::android::app::SearchableInfo>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "getSearchableInfo", .descriptor == "(Landroid/content/ComponentName;)Landroid/app/SearchableInfo;"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "getSearchableInfo\0", "(Landroid/content/ComponentName;)Landroid/app/SearchableInfo;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getSearchablesInGlobalSearch](https://developer.android.com/reference/android/app/SearchManager.html#getSearchablesInGlobalSearch())
///
/// Required features: "java-util-List"
#[cfg(any(feature = "all", all(feature = "java-util-List")))]
pub fn getSearchablesInGlobalSearch<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::util::List>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/app/SearchManager", java.flags == PUBLIC, .name == "getSearchablesInGlobalSearch", .descriptor == "()Ljava/util/List;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/app/SearchManager\0", "getSearchablesInGlobalSearch\0", "()Ljava/util/List;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// public static final [ACTION_KEY](https://developer.android.com/reference/android/app/SearchManager.html#ACTION_KEY)
pub const ACTION_KEY : &'static str = "action_key";
/// public static final [ACTION_MSG](https://developer.android.com/reference/android/app/SearchManager.html#ACTION_MSG)
pub const ACTION_MSG : &'static str = "action_msg";
/// public static final [APP_DATA](https://developer.android.com/reference/android/app/SearchManager.html#APP_DATA)
pub const APP_DATA : &'static str = "app_data";
/// public static final [CURSOR_EXTRA_KEY_IN_PROGRESS](https://developer.android.com/reference/android/app/SearchManager.html#CURSOR_EXTRA_KEY_IN_PROGRESS)
pub const CURSOR_EXTRA_KEY_IN_PROGRESS : &'static str = "in_progress";
/// public static final [EXTRA_DATA_KEY](https://developer.android.com/reference/android/app/SearchManager.html#EXTRA_DATA_KEY)
pub const EXTRA_DATA_KEY : &'static str = "intent_extra_data_key";
/// public static final [EXTRA_NEW_SEARCH](https://developer.android.com/reference/android/app/SearchManager.html#EXTRA_NEW_SEARCH)
pub const EXTRA_NEW_SEARCH : &'static str = "new_search";
/// public static final [EXTRA_SELECT_QUERY](https://developer.android.com/reference/android/app/SearchManager.html#EXTRA_SELECT_QUERY)
pub const EXTRA_SELECT_QUERY : &'static str = "select_query";
/// public static final [EXTRA_WEB_SEARCH_PENDINGINTENT](https://developer.android.com/reference/android/app/SearchManager.html#EXTRA_WEB_SEARCH_PENDINGINTENT)
pub const EXTRA_WEB_SEARCH_PENDINGINTENT : &'static str = "web_search_pendingintent";
/// public static final [FLAG_QUERY_REFINEMENT](https://developer.android.com/reference/android/app/SearchManager.html#FLAG_QUERY_REFINEMENT)
pub const FLAG_QUERY_REFINEMENT : i32 = 1;
/// public static final [INTENT_ACTION_GLOBAL_SEARCH](https://developer.android.com/reference/android/app/SearchManager.html#INTENT_ACTION_GLOBAL_SEARCH)
pub const INTENT_ACTION_GLOBAL_SEARCH : &'static str = "android.search.action.GLOBAL_SEARCH";
/// public static final [INTENT_ACTION_SEARCHABLES_CHANGED](https://developer.android.com/reference/android/app/SearchManager.html#INTENT_ACTION_SEARCHABLES_CHANGED)
pub const INTENT_ACTION_SEARCHABLES_CHANGED : &'static str = "android.search.action.SEARCHABLES_CHANGED";
/// public static final [INTENT_ACTION_SEARCH_SETTINGS](https://developer.android.com/reference/android/app/SearchManager.html#INTENT_ACTION_SEARCH_SETTINGS)
pub const INTENT_ACTION_SEARCH_SETTINGS : &'static str = "android.search.action.SEARCH_SETTINGS";
/// public static final [INTENT_ACTION_SEARCH_SETTINGS_CHANGED](https://developer.android.com/reference/android/app/SearchManager.html#INTENT_ACTION_SEARCH_SETTINGS_CHANGED)
pub const INTENT_ACTION_SEARCH_SETTINGS_CHANGED : &'static str = "android.search.action.SETTINGS_CHANGED";
/// public static final [INTENT_ACTION_WEB_SEARCH_SETTINGS](https://developer.android.com/reference/android/app/SearchManager.html#INTENT_ACTION_WEB_SEARCH_SETTINGS)
pub const INTENT_ACTION_WEB_SEARCH_SETTINGS : &'static str = "android.search.action.WEB_SEARCH_SETTINGS";
/// public static final [INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED](https://developer.android.com/reference/android/app/SearchManager.html#INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED)
pub const INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED : &'static str = "android.search.action.GLOBAL_SEARCH_ACTIVITY_CHANGED";
/// public static final [MENU_KEY](https://developer.android.com/reference/android/app/SearchManager.html#MENU_KEY)
pub const MENU_KEY : __jni_bindgen::jchar = __jni_bindgen::jchar(115);
/// public static final [MENU_KEYCODE](https://developer.android.com/reference/android/app/SearchManager.html#MENU_KEYCODE)
pub const MENU_KEYCODE : i32 = 47;
/// public static final [QUERY](https://developer.android.com/reference/android/app/SearchManager.html#QUERY)
pub const QUERY : &'static str = "query";
/// public static final [SHORTCUT_MIME_TYPE](https://developer.android.com/reference/android/app/SearchManager.html#SHORTCUT_MIME_TYPE)
pub const SHORTCUT_MIME_TYPE : &'static str = "vnd.android.cursor.item/vnd.android.search.suggest";
/// public static final [SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG)
pub const SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG : &'static str = "suggest_audio_channel_config";
/// public static final [SUGGEST_COLUMN_CONTENT_TYPE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_CONTENT_TYPE)
pub const SUGGEST_COLUMN_CONTENT_TYPE : &'static str = "suggest_content_type";
/// public static final [SUGGEST_COLUMN_DURATION](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_DURATION)
pub const SUGGEST_COLUMN_DURATION : &'static str = "suggest_duration";
/// public static final [SUGGEST_COLUMN_FLAGS](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_FLAGS)
pub const SUGGEST_COLUMN_FLAGS : &'static str = "suggest_flags";
/// public static final [SUGGEST_COLUMN_FORMAT](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_FORMAT)
pub const SUGGEST_COLUMN_FORMAT : &'static str = "suggest_format";
/// public static final [SUGGEST_COLUMN_ICON_1](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_ICON_1)
pub const SUGGEST_COLUMN_ICON_1 : &'static str = "suggest_icon_1";
/// public static final [SUGGEST_COLUMN_ICON_2](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_ICON_2)
pub const SUGGEST_COLUMN_ICON_2 : &'static str = "suggest_icon_2";
/// public static final [SUGGEST_COLUMN_INTENT_ACTION](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_INTENT_ACTION)
pub const SUGGEST_COLUMN_INTENT_ACTION : &'static str = "suggest_intent_action";
/// public static final [SUGGEST_COLUMN_INTENT_DATA](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_INTENT_DATA)
pub const SUGGEST_COLUMN_INTENT_DATA : &'static str = "suggest_intent_data";
/// public static final [SUGGEST_COLUMN_INTENT_DATA_ID](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_INTENT_DATA_ID)
pub const SUGGEST_COLUMN_INTENT_DATA_ID : &'static str = "suggest_intent_data_id";
/// public static final [SUGGEST_COLUMN_INTENT_EXTRA_DATA](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_INTENT_EXTRA_DATA)
pub const SUGGEST_COLUMN_INTENT_EXTRA_DATA : &'static str = "suggest_intent_extra_data";
/// public static final [SUGGEST_COLUMN_IS_LIVE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_IS_LIVE)
pub const SUGGEST_COLUMN_IS_LIVE : &'static str = "suggest_is_live";
/// public static final [SUGGEST_COLUMN_LAST_ACCESS_HINT](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_LAST_ACCESS_HINT)
pub const SUGGEST_COLUMN_LAST_ACCESS_HINT : &'static str = "suggest_last_access_hint";
/// public static final [SUGGEST_COLUMN_PRODUCTION_YEAR](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_PRODUCTION_YEAR)
pub const SUGGEST_COLUMN_PRODUCTION_YEAR : &'static str = "suggest_production_year";
/// public static final [SUGGEST_COLUMN_PURCHASE_PRICE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_PURCHASE_PRICE)
pub const SUGGEST_COLUMN_PURCHASE_PRICE : &'static str = "suggest_purchase_price";
/// public static final [SUGGEST_COLUMN_QUERY](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_QUERY)
pub const SUGGEST_COLUMN_QUERY : &'static str = "suggest_intent_query";
/// public static final [SUGGEST_COLUMN_RATING_SCORE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_RATING_SCORE)
pub const SUGGEST_COLUMN_RATING_SCORE : &'static str = "suggest_rating_score";
/// public static final [SUGGEST_COLUMN_RATING_STYLE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_RATING_STYLE)
pub const SUGGEST_COLUMN_RATING_STYLE : &'static str = "suggest_rating_style";
/// public static final [SUGGEST_COLUMN_RENTAL_PRICE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_RENTAL_PRICE)
pub const SUGGEST_COLUMN_RENTAL_PRICE : &'static str = "suggest_rental_price";
/// public static final [SUGGEST_COLUMN_RESULT_CARD_IMAGE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_RESULT_CARD_IMAGE)
pub const SUGGEST_COLUMN_RESULT_CARD_IMAGE : &'static str = "suggest_result_card_image";
/// public static final [SUGGEST_COLUMN_SHORTCUT_ID](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_SHORTCUT_ID)
pub const SUGGEST_COLUMN_SHORTCUT_ID : &'static str = "suggest_shortcut_id";
/// public static final [SUGGEST_COLUMN_SPINNER_WHILE_REFRESHING](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_SPINNER_WHILE_REFRESHING)
pub const SUGGEST_COLUMN_SPINNER_WHILE_REFRESHING : &'static str = "suggest_spinner_while_refreshing";
/// public static final [SUGGEST_COLUMN_TEXT_1](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_TEXT_1)
pub const SUGGEST_COLUMN_TEXT_1 : &'static str = "suggest_text_1";
/// public static final [SUGGEST_COLUMN_TEXT_2](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_TEXT_2)
pub const SUGGEST_COLUMN_TEXT_2 : &'static str = "suggest_text_2";
/// public static final [SUGGEST_COLUMN_TEXT_2_URL](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_TEXT_2_URL)
pub const SUGGEST_COLUMN_TEXT_2_URL : &'static str = "suggest_text_2_url";
/// public static final [SUGGEST_COLUMN_VIDEO_HEIGHT](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_VIDEO_HEIGHT)
pub const SUGGEST_COLUMN_VIDEO_HEIGHT : &'static str = "suggest_video_height";
/// public static final [SUGGEST_COLUMN_VIDEO_WIDTH](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_COLUMN_VIDEO_WIDTH)
pub const SUGGEST_COLUMN_VIDEO_WIDTH : &'static str = "suggest_video_width";
/// public static final [SUGGEST_MIME_TYPE](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_MIME_TYPE)
pub const SUGGEST_MIME_TYPE : &'static str = "vnd.android.cursor.dir/vnd.android.search.suggest";
/// public static final [SUGGEST_NEVER_MAKE_SHORTCUT](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_NEVER_MAKE_SHORTCUT)
pub const SUGGEST_NEVER_MAKE_SHORTCUT : &'static str = "_-1";
/// public static final [SUGGEST_PARAMETER_LIMIT](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_PARAMETER_LIMIT)
pub const SUGGEST_PARAMETER_LIMIT : &'static str = "limit";
/// public static final [SUGGEST_URI_PATH_QUERY](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_URI_PATH_QUERY)
pub const SUGGEST_URI_PATH_QUERY : &'static str = "search_suggest_query";
/// public static final [SUGGEST_URI_PATH_SHORTCUT](https://developer.android.com/reference/android/app/SearchManager.html#SUGGEST_URI_PATH_SHORTCUT)
pub const SUGGEST_URI_PATH_SHORTCUT : &'static str = "search_suggest_shortcut";
/// public static final [USER_QUERY](https://developer.android.com/reference/android/app/SearchManager.html#USER_QUERY)
pub const USER_QUERY : &'static str = "user_query";
}
}