;;;; -*- mode:emacs-lisp;coding:utf-8 -*- ;;;;************************************************************************** ;;;;FILE: pjb-java.el ;;;;LANGUAGE: emacs lisp ;;;;SYSTEM: POSIX ;;;;USER-INTERFACE: NONE ;;;;DESCRIPTION ;;;; ;;;; Commands to help editing java code. ;;;; ;;;;AUTHORS ;;;; <PJB> Pascal. Bourguignon <pascal.bourguignon@ubudu.com> ;;;;MODIFICATIONS ;;;; 2013-06-14 <PJB> Created. ;;;;BUGS ;;;;LEGAL ;;;; AGPL3 ;;;; ;;;; Copyright Pascal. Bourguignon 2013 - 2013 ;;;; ;;;; This program is free software: you can redistribute it and/or modify ;;;; it under the terms of the GNU Affero General Public License as published by ;;;; the Free Software Foundation, either version 3 of the License, or ;;;; (at your option) any later version. ;;;; ;;;; This program is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;;; GNU Affero General Public License for more details. ;;;; ;;;; You should have received a copy of the GNU Affero General Public License ;;;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;;;************************************************************************** (require 'pjb-http) (defun java-capitalize-first-letter (string) (let ((string (if (symbolp string) (symbol-name string) string))) (if (zerop (length string)) strings (concat (capitalize (substring string 0 1)) (substring string 1))))) (defun java-generate-structure-class (class-name slots) (insert (format "\npublic class %s {\n" class-name)) (insert (format " public %s(){}\n" class-name)) (dolist (slot slots) (destructuring-bind (name type &rest options) slot (let ((came (java-capitalize-first-letter (etypecase name (string name) (symbol (symbol-name name))))) (read-only (member :read-only options))) (insert (format " protected %s m%s;\n" type came)) (insert (format " public %s get%s(){return m%s;}\n" type came came)) (unless read-only (insert (format " public void set%s(%s a%s){m%s=a%s;}\n" came type came came came)))))) (insert "}\n")) (defmacro java-defstruct (class-name &rest slots) (declare (indent 1)) `(java-generate-structure-class ',class-name ',slots)) ;; (java-ins @Override) ;; (java-def `(method public ,name ,parameters ,retype [throws Exception] ;; (send super ,name ,arguments) ;; ;; ;; )) (defun lastcar (x) (car (last x))) (defun pjb-java--trace-one-method () (interactive) (when (re-search-forward "\\(public\\|protected\\) \\([^ ]+\\) \\([^ ]+\\)(\\(.*\\)) *{" (point-max) t) (let* ((start (match-beginning 1)) (access (match-string 1)) (retype (match-string 2)) (name (match-string 3)) (arguments (match-string 4)) (arguments (mapcar (lambda (arg) (split-string arg " " t)) (split-string arguments " *, *"))) (arguments (if (equal '(nil) arguments) nil arguments)) (result1 " --> %s") (result2 ",result") (result3 " return result;\n")) (message "%s(%s)" name (mapconcat (function lastcar) arguments ",")) (goto-char start) (insert "@Override\n ") (end-of-line) (insert "\n") (if (string= "void" retype) (progn (setf result1 "" result2 "" result3 "") (insert (format " super.%s(%s);\n" name (mapconcat (function lastcar) arguments ",")))) (insert (format " %s result=super.%s(%s);\n" retype name (mapconcat (function lastcar) arguments ",")))) (if (equal '(nil) arguments) (insert (format " trace(String.format(\"%%s.%s()%s\",this%s));\n" name result1 result2)) (insert (format " trace(String.format(\"%%s.%s(%s)%s\",this%s%s%s));\n" name (mapconcat (lambda (arg) (format "%s=%%s" (lastcar arg))) arguments ",") result1 (if arguments "," "") (mapconcat (function lastcar) arguments ",") result2))) (insert result3) (insert " }\n\n")) t)) (defun pjb-java--trace-all-methods () (interactive) (while (pjb-java--trace-one-method))) (defun pjb-java--single-line (start end) (interactive "*r") (with-marker (end (if (= ?\n (char-before end)) (1- end) end)) (goto-char start) (while (and (< (point) end) (re-search-forward "\n[ \t]*" end t)) (delete-region (match-beginning 0) (match-end 0)) (when (and (alphanumericp (char-before)) (alphanumericp (char-after))) (insert " "))))) ;; (pjb-parse-html (pjb-http-get "http://developer.android.com/reference/classes.html")) ;; ;; ;; "<!DOCTYPE html> ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; <html> ;; <head> ;; ;; ;; ;; <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"> ;; ;; <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"/favicon.ico\" /> ;; <title>Class Index | Android Developers</title> ;; ;; <!-- STYLESHEETS --> ;; <link rel=\"stylesheet\" ;; href=\"//fonts.googleapis.com/css?family=Roboto:regular,medium,thin,italic,mediumitalic,bold\" title=\"roboto\"> ;; <link href=\"/assets/css/default.css\" rel=\"stylesheet\" type=\"text/css\"> ;; ;; ;; <!-- FULLSCREEN STYLESHEET --> ;; <link href=\"/assets/css/fullscreen.css\" rel=\"stylesheet\" class=\"fullscreen\" ;; type=\"text/css\"> ;; ;; ;; <!-- JAVASCRIPT --> ;; <script src=\"//www.google.com/jsapi\" type=\"text/javascript\"></script> ;; <script src=\"/assets/js/android_3p-bundle.js\" type=\"text/javascript\"></script> ;; <script type=\"text/javascript\"> ;; var toRoot = \"/\"; ;; var devsite = false; ;; </script> ;; <script src=\"/assets/js/docs.js\" type=\"text/javascript\"></script> ;; ;; <script type=\"text/javascript\"> ;; var _gaq = _gaq || []; ;; _gaq.push(['_setAccount', 'UA-5831155-1']); ;; _gaq.push(['_trackPageview']); ;; ;; (function() { ;; var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ;; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; ;; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); ;; })(); ;; </script> ;; </head> ;; <body class=\"gc-documentation ;; develop\" itemscope itemtype=\"http://schema.org/Article\"> ;; <a name=\"top\"></a> ;; ;; <a name=\"top\"></a> ;; ;; <!-- Header --> ;; <div id=\"header\"> ;; <div class=\"wrap\" id=\"header-wrap\"> ;; <div class=\"col-3 logo\"> ;; <a href=\"/index.html\"> ;; <img src=\"/assets/images/dac_logo.png\" width=\"123\" height=\"25\" alt=\"Android Developers\" /> ;; </a> ;; <div class=\"btn-quicknav\" id=\"btn-quicknav\"> ;; <a href=\"#\" class=\"arrow-inactive\">Quicknav</a> ;; <a href=\"#\" class=\"arrow-active\">Quicknav</a> ;; </div> ;; </div> ;; <ul class=\"nav-x col-9\"> ;; <li class=\"design\"> ;; <a href=\"/design/index.html\" ;; zh-tw-lang=\"設計\" ;; zh-cn-lang=\"设计\" ;; ru-lang=\"Проектирование\" ;; ko-lang=\"디자인\" ;; ja-lang=\"設計\" ;; es-lang=\"Diseñar\" ;; >Design</a></li> ;; <li class=\"develop\"><a href=\"/develop/index.html\" ;; zh-tw-lang=\"開發\" ;; zh-cn-lang=\"开发\" ;; ru-lang=\"Разработка\" ;; ko-lang=\"개발\" ;; ja-lang=\"開発\" ;; es-lang=\"Desarrollar\" ;; >Develop</a></li> ;; <li class=\"distribute last\"><a href=\"/distribute/index.html\" ;; zh-tw-lang=\"發佈\" ;; zh-cn-lang=\"分发\" ;; ru-lang=\"Распространение\" ;; ko-lang=\"배포\" ;; ja-lang=\"配布\" ;; es-lang=\"Distribuir\" ;; >Distribute</a></li> ;; </ul> ;; ;; <!-- New Search --> ;; <div class=\"menu-container\"> ;; <div class=\"moremenu\"> ;; <div id=\"more-btn\"></div> ;; </div> ;; <div class=\"morehover\" id=\"moremenu\"> ;; <div class=\"top\"></div> ;; <div class=\"mid\"> ;; <div class=\"header\">Links</div> ;; <ul> ;; <li><a href=\"https://play.google.com/apps/publish/\">Google Play Developer Console</a></li> ;; <li><a href=\"http://android-developers.blogspot.com/\">Android Developers Blog</a></li> ;; <li><a href=\"/about/index.html\">About Android</a></li> ;; </ul> ;; <div class=\"header\">Android Sites</div> ;; <ul> ;; <li><a href=\"http://www.android.com\">Android.com</a></li> ;; <li class=\"active\"><a>Android Developers</a></li> ;; <li><a href=\"http://source.android.com\">Android Open Source Project</a></li> ;; </ul> ;; ;; ;; ;; <div class=\"header\">Language</div> ;; <div id=\"language\" class=\"locales\"> ;; <select name=\"language\" onChange=\"changeLangPref(this.value, true)\"> ;; <option value=\"en\">English</option> ;; <option value=\"es\">Español</option> ;; <option value=\"ja\">日本語</option> ;; <option value=\"ko\">한국어</option> ;; <option value=\"ru\">Русский</option> ;; <option value=\"zh-cn\">中文 (中国)</option> ;; <option value=\"zh-tw\">中文 (台灣)</option> ;; </select> ;; </div> ;; <script type=\"text/javascript\"> ;; <!-- ;; loadLangPref(); ;; //--> ;; </script> ;; ;; ;; ;; ;; <br class=\"clearfix\" /> ;; </div> ;; <div class=\"bottom\"></div> ;; </div> ;; <div class=\"search\" id=\"search-container\"> ;; <div class=\"search-inner\"> ;; <div id=\"search-btn\"></div> ;; <div class=\"left\"></div> ;; <form onsubmit=\"return submit_search()\"> ;; <input id=\"search_autocomplete\" type=\"text\" value=\"\" autocomplete=\"off\" name=\"q\" ;; onfocus=\"search_focus_changed(this, true)\" onblur=\"search_focus_changed(this, false)\" ;; onkeydown=\"return search_changed(event, true, '/')\" ;; onkeyup=\"return search_changed(event, false, '/')\" /> ;; </form> ;; <div class=\"right\"></div> ;; <a class=\"close hide\">close</a> ;; <div class=\"left\"></div> ;; <div class=\"right\"></div> ;; </div> ;; </div> ;; ;; <div class=\"search_filtered_wrapper reference\"> ;; <div class=\"suggest-card reference no-display\"> ;; <ul class=\"search_filtered\"> ;; </ul> ;; </div> ;; </div> ;; ;; <div class=\"search_filtered_wrapper docs\"> ;; <div class=\"suggest-card dummy no-display\"> </div> ;; <div class=\"suggest-card develop no-display\"> ;; <ul class=\"search_filtered\"> ;; </ul> ;; <div class=\"child-card guides no-display\"> ;; </div> ;; <div class=\"child-card training no-display\"> ;; </div> ;; </div> ;; <div class=\"suggest-card design no-display\"> ;; <ul class=\"search_filtered\"> ;; </ul> ;; </div> ;; <div class=\"suggest-card distribute no-display\"> ;; <ul class=\"search_filtered\"> ;; </ul> ;; </div> ;; </div> ;; ;; </div> ;; <!-- /New Search> ;; ;; ;; <!-- Expanded quicknav --> ;; <div id=\"quicknav\" class=\"col-9\"> ;; <ul> ;; <li class=\"design\"> ;; <ul> ;; <li><a href=\"/design/index.html\">Get Started</a></li> ;; <li><a href=\"/design/style/index.html\">Style</a></li> ;; <li><a href=\"/design/patterns/index.html\">Patterns</a></li> ;; <li><a href=\"/design/building-blocks/index.html\">Building Blocks</a></li> ;; <li><a href=\"/design/downloads/index.html\">Downloads</a></li> ;; <li><a href=\"/design/videos/index.html\">Videos</a></li> ;; </ul> ;; </li> ;; <li class=\"develop\"> ;; <ul> ;; <li><a href=\"/training/index.html\" ;; zh-tw-lang=\"訓練課程\" ;; zh-cn-lang=\"培训\" ;; ru-lang=\"Курсы\" ;; ko-lang=\"교육\" ;; ja-lang=\"トレーニング\" ;; es-lang=\"Capacitación\" ;; >Training</a></li> ;; <li><a href=\"/guide/components/index.html\" ;; zh-tw-lang=\"API 指南\" ;; zh-cn-lang=\"API 指南\" ;; ru-lang=\"Руководства по API\" ;; ko-lang=\"API 가이드\" ;; ja-lang=\"API ガイド\" ;; es-lang=\"Guías de la API\" ;; >API Guides</a></li> ;; <li><a href=\"/reference/packages.html\" ;; zh-tw-lang=\"參考資源\" ;; zh-cn-lang=\"参考\" ;; ru-lang=\"Справочник\" ;; ko-lang=\"참조문서\" ;; ja-lang=\"リファレンス\" ;; es-lang=\"Referencia\" ;; >Reference</a></li> ;; <li><a href=\"/tools/index.html\" ;; zh-tw-lang=\"相關工具\" ;; zh-cn-lang=\"工具\" ;; ru-lang=\"Инструменты\" ;; ko-lang=\"도구\" ;; ja-lang=\"ツール\" ;; es-lang=\"Herramientas\" ;; >Tools</a> ;; <ul><li><a href=\"/sdk/index.html\">Get the SDK</a></li></ul> ;; </li> ;; <li><a href=\"/google/index.html\">Google Services</a> ;; </li> ;; ;; </ul> ;; </li> ;; <li class=\"distribute last\"> ;; <ul> ;; <li><a href=\"/distribute/index.html\">Google Play</a></li> ;; <li><a href=\"/distribute/googleplay/publish/index.html\">Publishing</a></li> ;; <li><a href=\"/distribute/googleplay/promote/index.html\">Promoting</a></li> ;; <li><a href=\"/distribute/googleplay/quality/index.html\">App Quality</a></li> ;; <li><a href=\"/distribute/googleplay/spotlight/index.html\">Spotlight</a></li> ;; <li><a href=\"/distribute/open.html\">Open Distribution</a></li> ;; </ul> ;; </li> ;; </ul> ;; </div> ;; <!-- /Expanded quicknav --> ;; </div> ;; </div> ;; <!-- /Header --> ;; ;; ;; <div id=\"searchResults\" class=\"wrap\" style=\"display:none;\"> ;; <h2 id=\"searchTitle\">Results</h2> ;; <div id=\"leftSearchControl\" class=\"search-control\">Loading...</div> ;; </div> ;; ;; ;; ;; <!-- Secondary x-nav --> ;; <div id=\"nav-x\"> ;; <div class=\"wrap\"> ;; <ul class=\"nav-x col-9 develop\" style=\"width:100%\"> ;; <li class=\"training\"><a href=\"/training/index.html\" ;; zh-tw-lang=\"訓練課程\" ;; zh-cn-lang=\"培训\" ;; ru-lang=\"Курсы\" ;; ko-lang=\"교육\" ;; ja-lang=\"トレーニング\" ;; es-lang=\"Capacitación\" ;; >Training</a></li> ;; <li class=\"guide\"><a href=\"/guide/components/index.html\" ;; zh-tw-lang=\"API 指南\" ;; zh-cn-lang=\"API 指南\" ;; ru-lang=\"Руководства по API\" ;; ko-lang=\"API 가이드\" ;; ja-lang=\"API ガイド\" ;; es-lang=\"Guías de la API\" ;; >API Guides</a></li> ;; <li class=\"reference\"><a href=\"/reference/packages.html\" ;; zh-tw-lang=\"參考資源\" ;; zh-cn-lang=\"参考\" ;; ru-lang=\"Справочник\" ;; ko-lang=\"참조문서\" ;; ja-lang=\"リファレンス\" ;; es-lang=\"Referencia\" ;; >Reference</a></li> ;; <li class=\"tools\"><a href=\"/tools/index.html\" ;; zh-tw-lang=\"相關工具\" ;; zh-cn-lang=\"工具\" ;; ru-lang=\"Инструменты\" ;; ko-lang=\"도구\" ;; ja-lang=\"ツール\" ;; es-lang=\"Herramientas\" ;; >Tools</a></li> ;; <li class=\"google\"><a href=\"/google/index.html\" ;; >Google Services</a> ;; </li> ;; ;; </ul> ;; </div> ;; ;; </div> ;; <!-- /Sendondary x-nav --> ;; ;; ;; ;; ;; ;; ;; ;; ;; <div class=\"wrap clearfix\" id=\"body-content\"> ;; <div class=\"col-4\" id=\"side-nav\" itemscope itemtype=\"http://schema.org/SiteNavigationElement\"> ;; <div id=\"devdoc-nav\"> ;; ;; <a class=\"totop\" href=\"#top\" data-g-event=\"left-nav-top\">to top</a> ;; <div id=\"api-nav-header\"> ;; <div id=\"api-level-toggle\"> ;; <label for=\"apiLevelCheckbox\" class=\"disabled\">API level: </label> ;; <div class=\"select-wrapper\"> ;; <select id=\"apiLevelSelector\"> ;; <!-- option elements added by buildApiLevelSelector() --> ;; </select> ;; </div> ;; </div><!-- end toggle --> ;; <div id=\"api-nav-title\">Android APIs</div> ;; </div><!-- end nav header --> ;; <script> ;; var SINCE_DATA = [ '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18' ]; ;; buildApiLevelSelector(); ;; </script> ;; ;; <div id=\"swapper\"> ;; <div id=\"nav-panels\"> ;; <div id=\"resize-packages-nav\"> ;; <div id=\"packages-nav\" class=\"scroll-pane\"> ;; ;; <ul> ;; ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/package-summary.html\">android</a></li> ;; <li class=\"api apilevel-4\"> ;; <a href=\"/reference/android/accessibilityservice/package-summary.html\">android.accessibilityservice</a></li> ;; <li class=\"api apilevel-5\"> ;; <a href=\"/reference/android/accounts/package-summary.html\">android.accounts</a></li> ;; <li class=\"api apilevel-11\"> ;; <a href=\"/reference/android/animation/package-summary.html\">android.animation</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/app/package-summary.html\">android.app</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/android/app/admin/package-summary.html\">android.app.admin</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/android/app/backup/package-summary.html\">android.app.backup</a></li> ;; <li class=\"api apilevel-3\"> ;; <a href=\"/reference/android/appwidget/package-summary.html\">android.appwidget</a></li> ;; <li class=\"api apilevel-5\"> ;; <a href=\"/reference/android/bluetooth/package-summary.html\">android.bluetooth</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/content/package-summary.html\">android.content</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/content/pm/package-summary.html\">android.content.pm</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/content/res/package-summary.html\">android.content.res</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/database/package-summary.html\">android.database</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/database/sqlite/package-summary.html\">android.database.sqlite</a></li> ;; <li class=\"api apilevel-11\"> ;; <a href=\"/reference/android/drm/package-summary.html\">android.drm</a></li> ;; <li class=\"api apilevel-4\"> ;; <a href=\"/reference/android/gesture/package-summary.html\">android.gesture</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/graphics/package-summary.html\">android.graphics</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/graphics/drawable/package-summary.html\">android.graphics.drawable</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/graphics/drawable/shapes/package-summary.html\">android.graphics.drawable.shapes</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/hardware/package-summary.html\">android.hardware</a></li> ;; <li class=\"api apilevel-17\"> ;; <a href=\"/reference/android/hardware/display/package-summary.html\">android.hardware.display</a></li> ;; <li class=\"api apilevel-16\"> ;; <a href=\"/reference/android/hardware/input/package-summary.html\">android.hardware.input</a></li> ;; <li class=\"api apilevel-18\"> ;; <a href=\"/reference/android/hardware/location/package-summary.html\">android.hardware.location</a></li> ;; <li class=\"api apilevel-12\"> ;; <a href=\"/reference/android/hardware/usb/package-summary.html\">android.hardware.usb</a></li> ;; <li class=\"api apilevel-3\"> ;; <a href=\"/reference/android/inputmethodservice/package-summary.html\">android.inputmethodservice</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/location/package-summary.html\">android.location</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/media/package-summary.html\">android.media</a></li> ;; <li class=\"api apilevel-9\"> ;; <a href=\"/reference/android/media/audiofx/package-summary.html\">android.media.audiofx</a></li> ;; <li class=\"api apilevel-14\"> ;; <a href=\"/reference/android/media/effect/package-summary.html\">android.media.effect</a></li> ;; <li class=\"api apilevel-12\"> ;; <a href=\"/reference/android/mtp/package-summary.html\">android.mtp</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/net/package-summary.html\">android.net</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/net/http/package-summary.html\">android.net.http</a></li> ;; <li class=\"api apilevel-16\"> ;; <a href=\"/reference/android/net/nsd/package-summary.html\">android.net.nsd</a></li> ;; <li class=\"api apilevel-12\"> ;; <a href=\"/reference/android/net/rtp/package-summary.html\">android.net.rtp</a></li> ;; <li class=\"api apilevel-9\"> ;; <a href=\"/reference/android/net/sip/package-summary.html\">android.net.sip</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/net/wifi/package-summary.html\">android.net.wifi</a></li> ;; <li class=\"api apilevel-14\"> ;; <a href=\"/reference/android/net/wifi/p2p/package-summary.html\">android.net.wifi.p2p</a></li> ;; <li class=\"api apilevel-16\"> ;; <a href=\"/reference/android/net/wifi/p2p/nsd/package-summary.html\">android.net.wifi.p2p.nsd</a></li> ;; <li class=\"api apilevel-9\"> ;; <a href=\"/reference/android/nfc/package-summary.html\">android.nfc</a></li> ;; <li class=\"api apilevel-10\"> ;; <a href=\"/reference/android/nfc/tech/package-summary.html\">android.nfc.tech</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/opengl/package-summary.html\">android.opengl</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/os/package-summary.html\">android.os</a></li> ;; <li class=\"api apilevel-9\"> ;; <a href=\"/reference/android/os/storage/package-summary.html\">android.os.storage</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/preference/package-summary.html\">android.preference</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/provider/package-summary.html\">android.provider</a></li> ;; <li class=\"api apilevel-11\"> ;; <a href=\"/reference/android/renderscript/package-summary.html\">android.renderscript</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/sax/package-summary.html\">android.sax</a></li> ;; <li class=\"api apilevel-14\"> ;; <a href=\"/reference/android/security/package-summary.html\">android.security</a></li> ;; <li class=\"api apilevel-17\"> ;; <a href=\"/reference/android/service/dreams/package-summary.html\">android.service.dreams</a></li> ;; <li class=\"api apilevel-18\"> ;; <a href=\"/reference/android/service/notification/package-summary.html\">android.service.notification</a></li> ;; <li class=\"api apilevel-14\"> ;; <a href=\"/reference/android/service/textservice/package-summary.html\">android.service.textservice</a></li> ;; <li class=\"api apilevel-7\"> ;; <a href=\"/reference/android/service/wallpaper/package-summary.html\">android.service.wallpaper</a></li> ;; <li class=\"api apilevel-3\"> ;; <a href=\"/reference/android/speech/package-summary.html\">android.speech</a></li> ;; <li class=\"api apilevel-4\"> ;; <a href=\"/reference/android/speech/tts/package-summary.html\">android.speech.tts</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v13/app/package-summary.html\">android.support.v13.app</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/accessibilityservice/package-summary.html\">android.support.v4.accessibilityservice</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/app/package-summary.html\">android.support.v4.app</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/content/package-summary.html\">android.support.v4.content</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/content/pm/package-summary.html\">android.support.v4.content.pm</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/database/package-summary.html\">android.support.v4.database</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/graphics/drawable/package-summary.html\">android.support.v4.graphics.drawable</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/hardware/display/package-summary.html\">android.support.v4.hardware.display</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/media/package-summary.html\">android.support.v4.media</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/net/package-summary.html\">android.support.v4.net</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/os/package-summary.html\">android.support.v4.os</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/text/package-summary.html\">android.support.v4.text</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/util/package-summary.html\">android.support.v4.util</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/view/package-summary.html\">android.support.v4.view</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/view/accessibility/package-summary.html\">android.support.v4.view.accessibility</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v4/widget/package-summary.html\">android.support.v4.widget</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/app/package-summary.html\">android.support.v7.app</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/appcompat/package-summary.html\">android.support.v7.appcompat</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/gridlayout/package-summary.html\">android.support.v7.gridlayout</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/media/package-summary.html\">android.support.v7.media</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/mediarouter/package-summary.html\">android.support.v7.mediarouter</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/view/package-summary.html\">android.support.v7.view</a></li> ;; <li class=\"api apilevel-\"> ;; <a href=\"/reference/android/support/v7/widget/package-summary.html\">android.support.v7.widget</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/telephony/package-summary.html\">android.telephony</a></li> ;; <li class=\"api apilevel-5\"> ;; <a href=\"/reference/android/telephony/cdma/package-summary.html\">android.telephony.cdma</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/telephony/gsm/package-summary.html\">android.telephony.gsm</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/test/package-summary.html\">android.test</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/test/mock/package-summary.html\">android.test.mock</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/test/suitebuilder/package-summary.html\">android.test.suitebuilder</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/text/package-summary.html\">android.text</a></li> ;; <li class=\"api apilevel-3\"> ;; <a href=\"/reference/android/text/format/package-summary.html\">android.text.format</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/text/method/package-summary.html\">android.text.method</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/text/style/package-summary.html\">android.text.style</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/text/util/package-summary.html\">android.text.util</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/util/package-summary.html\">android.util</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/view/package-summary.html\">android.view</a></li> ;; <li class=\"api apilevel-4\"> ;; <a href=\"/reference/android/view/accessibility/package-summary.html\">android.view.accessibility</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/view/animation/package-summary.html\">android.view.animation</a></li> ;; <li class=\"api apilevel-3\"> ;; <a href=\"/reference/android/view/inputmethod/package-summary.html\">android.view.inputmethod</a></li> ;; <li class=\"api apilevel-14\"> ;; <a href=\"/reference/android/view/textservice/package-summary.html\">android.view.textservice</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/webkit/package-summary.html\">android.webkit</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/android/widget/package-summary.html\">android.widget</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/dalvik/bytecode/package-summary.html\">dalvik.bytecode</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/dalvik/system/package-summary.html\">dalvik.system</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/awt/font/package-summary.html\">java.awt.font</a></li> ;; <li class=\"api apilevel-3\"> ;; <a href=\"/reference/java/beans/package-summary.html\">java.beans</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/io/package-summary.html\">java.io</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/lang/package-summary.html\">java.lang</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/lang/annotation/package-summary.html\">java.lang.annotation</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/lang/ref/package-summary.html\">java.lang.ref</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/lang/reflect/package-summary.html\">java.lang.reflect</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/math/package-summary.html\">java.math</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/net/package-summary.html\">java.net</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/nio/package-summary.html\">java.nio</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/nio/channels/package-summary.html\">java.nio.channels</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/nio/channels/spi/package-summary.html\">java.nio.channels.spi</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/nio/charset/package-summary.html\">java.nio.charset</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/nio/charset/spi/package-summary.html\">java.nio.charset.spi</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/security/package-summary.html\">java.security</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/security/acl/package-summary.html\">java.security.acl</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/security/cert/package-summary.html\">java.security.cert</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/security/interfaces/package-summary.html\">java.security.interfaces</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/security/spec/package-summary.html\">java.security.spec</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/sql/package-summary.html\">java.sql</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/text/package-summary.html\">java.text</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/package-summary.html\">java.util</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/concurrent/package-summary.html\">java.util.concurrent</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/concurrent/atomic/package-summary.html\">java.util.concurrent.atomic</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/concurrent/locks/package-summary.html\">java.util.concurrent.locks</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/jar/package-summary.html\">java.util.jar</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/logging/package-summary.html\">java.util.logging</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/prefs/package-summary.html\">java.util.prefs</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/regex/package-summary.html\">java.util.regex</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/java/util/zip/package-summary.html\">java.util.zip</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/crypto/package-summary.html\">javax.crypto</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/crypto/interfaces/package-summary.html\">javax.crypto.interfaces</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/crypto/spec/package-summary.html\">javax.crypto.spec</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/microedition/khronos/egl/package-summary.html\">javax.microedition.khronos.egl</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/microedition/khronos/opengles/package-summary.html\">javax.microedition.khronos.opengles</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/net/package-summary.html\">javax.net</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/net/ssl/package-summary.html\">javax.net.ssl</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/security/auth/package-summary.html\">javax.security.auth</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/security/auth/callback/package-summary.html\">javax.security.auth.callback</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/security/auth/login/package-summary.html\">javax.security.auth.login</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/security/auth/x500/package-summary.html\">javax.security.auth.x500</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/security/cert/package-summary.html\">javax.security.cert</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/sql/package-summary.html\">javax.sql</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/xml/package-summary.html\">javax.xml</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/datatype/package-summary.html\">javax.xml.datatype</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/namespace/package-summary.html\">javax.xml.namespace</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/javax/xml/parsers/package-summary.html\">javax.xml.parsers</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/transform/package-summary.html\">javax.xml.transform</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/transform/dom/package-summary.html\">javax.xml.transform.dom</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/transform/sax/package-summary.html\">javax.xml.transform.sax</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/transform/stream/package-summary.html\">javax.xml.transform.stream</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/validation/package-summary.html\">javax.xml.validation</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/javax/xml/xpath/package-summary.html\">javax.xml.xpath</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/junit/framework/package-summary.html\">junit.framework</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/junit/runner/package-summary.html\">junit.runner</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/package-summary.html\">org.apache.http</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/auth/package-summary.html\">org.apache.http.auth</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/auth/params/package-summary.html\">org.apache.http.auth.params</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/client/package-summary.html\">org.apache.http.client</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/client/entity/package-summary.html\">org.apache.http.client.entity</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/client/methods/package-summary.html\">org.apache.http.client.methods</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/client/params/package-summary.html\">org.apache.http.client.params</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/client/protocol/package-summary.html\">org.apache.http.client.protocol</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/client/utils/package-summary.html\">org.apache.http.client.utils</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/conn/package-summary.html\">org.apache.http.conn</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/conn/params/package-summary.html\">org.apache.http.conn.params</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/conn/routing/package-summary.html\">org.apache.http.conn.routing</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/conn/scheme/package-summary.html\">org.apache.http.conn.scheme</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/conn/ssl/package-summary.html\">org.apache.http.conn.ssl</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/conn/util/package-summary.html\">org.apache.http.conn.util</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/cookie/package-summary.html\">org.apache.http.cookie</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/cookie/params/package-summary.html\">org.apache.http.cookie.params</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/entity/package-summary.html\">org.apache.http.entity</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/package-summary.html\">org.apache.http.impl</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/auth/package-summary.html\">org.apache.http.impl.auth</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/client/package-summary.html\">org.apache.http.impl.client</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/conn/package-summary.html\">org.apache.http.impl.conn</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/conn/tsccm/package-summary.html\">org.apache.http.impl.conn.tsccm</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/cookie/package-summary.html\">org.apache.http.impl.cookie</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/entity/package-summary.html\">org.apache.http.impl.entity</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/impl/io/package-summary.html\">org.apache.http.impl.io</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/io/package-summary.html\">org.apache.http.io</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/message/package-summary.html\">org.apache.http.message</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/params/package-summary.html\">org.apache.http.params</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/protocol/package-summary.html\">org.apache.http.protocol</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/apache/http/util/package-summary.html\">org.apache.http.util</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/json/package-summary.html\">org.json</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/w3c/dom/package-summary.html\">org.w3c.dom</a></li> ;; <li class=\"api apilevel-8\"> ;; <a href=\"/reference/org/w3c/dom/ls/package-summary.html\">org.w3c.dom.ls</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/xml/sax/package-summary.html\">org.xml.sax</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/xml/sax/ext/package-summary.html\">org.xml.sax.ext</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/xml/sax/helpers/package-summary.html\">org.xml.sax.helpers</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/xmlpull/v1/package-summary.html\">org.xmlpull.v1</a></li> ;; <li class=\"api apilevel-1\"> ;; <a href=\"/reference/org/xmlpull/v1/sax2/package-summary.html\">org.xmlpull.v1.sax2</a></li> ;; </ul><br/> ;; ;; </div> <!-- end packages-nav --> ;; </div> <!-- end resize-packages --> ;; <div id=\"classes-nav\" class=\"scroll-pane\"> ;; ;; ;; ;; <p style=\"padding:10px\">Select a package to view its members</p><br/> ;; ;; ;; </div><!-- end classes --> ;; </div><!-- end nav-panels --> ;; <div id=\"nav-tree\" style=\"display:none\" class=\"scroll-pane\"> ;; <div id=\"tree-list\"></div> ;; </div><!-- end nav-tree --> ;; </div><!-- end swapper --> ;; <div id=\"nav-swap\"> ;; <a class=\"fullscreen\">fullscreen</a> ;; <a href='#' onclick='swapNav();return false;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a> ;; </div> ;; </div> <!-- end devdoc-nav --> ;; </div> <!-- end side-nav --> ;; <script type=\"text/javascript\"> ;; // init fullscreen based on user pref ;; var fullscreen = readCookie(\"fullscreen\"); ;; if (fullscreen != 0) { ;; if (fullscreen == \"false\") { ;; toggleFullscreen(false); ;; } else { ;; toggleFullscreen(true); ;; } ;; } ;; // init nav version for mobile ;; if (isMobile) { ;; swapNav(); // tree view should be used on mobile ;; $('#nav-swap').hide(); ;; } else { ;; chooseDefaultNav(); ;; if ($(\"#nav-tree\").is(':visible')) { ;; init_default_navtree(\"/\"); ;; } ;; } ;; // scroll the selected page into view ;; $(document).ready(function() { ;; scrollIntoView(\"packages-nav\"); ;; scrollIntoView(\"classes-nav\"); ;; }); ;; </script> ;; ;; ;; ;; ;; ;; <div class=\"col-12\" id=\"doc-col\"> ;; ;; <div id=\"jd-header\"> ;; <h1>Class Index</h1> ;; </div> ;; ;; <div id=\"jd-content\"> ;; <p>These are the Android API classes. See all <a href=\"packages.html\">API packages</a>.</p> ;; <div class=\"jd-letterlist\"> ;; <a href=\"#letter_A\">A</a> ;; <a href=\"#letter_B\">B</a> ;; <a href=\"#letter_C\">C</a> ;; <a href=\"#letter_D\">D</a> ;; <a href=\"#letter_E\">E</a> ;; <a href=\"#letter_F\">F</a> ;; <a href=\"#letter_G\">G</a> ;; <a href=\"#letter_H\">H</a> ;; <a href=\"#letter_I\">I</a> ;; <a href=\"#letter_J\">J</a> ;; <a href=\"#letter_K\">K</a> ;; <a href=\"#letter_L\">L</a> ;; <a href=\"#letter_M\">M</a> ;; <a href=\"#letter_N\">N</a> ;; <a href=\"#letter_O\">O</a> ;; <a href=\"#letter_P\">P</a> ;; <a href=\"#letter_Q\">Q</a> ;; <a href=\"#letter_R\">R</a> ;; <a href=\"#letter_S\">S</a> ;; <a href=\"#letter_T\">T</a> ;; <a href=\"#letter_U\">U</a> ;; <a href=\"#letter_V\">V</a> ;; <a href=\"#letter_W\">W</a> ;; <a href=\"#letter_X\">X</a> ;; <a href=\"#letter_Y\">Y</a> ;; <a href=\"#letter_Z\">Z</a> ;; </div> ;; ;; ;; ;; <h2 id=\"letter_A\">A</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/AbortableHttpRequest.html\">AbortableHttpRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface representing an HTTP request that can be aborted by shutting ;; down the underlying HTTP connection. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsListView.html\">AbsListView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class that can be used to implement virtualized lists of items. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsListView.LayoutParams.html\">AbsListView.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AbsListView extends LayoutParams to provide a place to hold the view type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsListView.MultiChoiceModeListener.html\">AbsListView.MultiChoiceModeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A MultiChoiceModeListener receives events for <code><a href=\"/reference/android/widget/AbsListView.html#CHOICE_MODE_MULTIPLE_MODAL\">CHOICE_MODE_MULTIPLE_MODAL</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsListView.OnScrollListener.html\">AbsListView.OnScrollListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when the list or grid ;; has been scrolled. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsListView.RecyclerListener.html\">AbsListView.RecyclerListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A RecyclerListener is used to receive a notification whenever a View is placed ;; inside the RecycleBin's scrap heap. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsListView.SelectionBoundsAdjuster.html\">AbsListView.SelectionBoundsAdjuster</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The top-level view of a list item can implement this interface to allow ;; itself to modify the bounds of the selection shown for that item. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsoluteLayout.html\">AbsoluteLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 3. ;; Use <code><a href=\"/reference/android/widget/FrameLayout.html\">FrameLayout</a></code>, <code><a href=\"/reference/android/widget/RelativeLayout.html\">RelativeLayout</a></code> ;; or a custom layout instead. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsoluteLayout.LayoutParams.html\">AbsoluteLayout.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Per-child layout information associated with AbsoluteLayout. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/AbsoluteSizeSpan.html\">AbsoluteSizeSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/AbsSavedState.html\">AbsSavedState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/android/os/Parcelable.html\">Parcelable</a></code> implementation that should be used by inheritance ;; hierarchies to ensure the state of all classes along the chain is saved. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsSeekBar.html\">AbsSeekBar</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AbsSpinner.html\">AbsSpinner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract base class for spinner widgets. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AbstractAccountAuthenticator.html\">AbstractAccountAuthenticator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for creating AccountAuthenticators. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/AbstractAuthenticationHandler.html\">AbstractAuthenticationHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/AbstractClientConnAdapter.html\">AbstractClientConnAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract adapter from <code><a href=\"/reference/org/apache/http/conn/OperatedClientConnection.html\">operated</a></code> to ;; <code><a href=\"/reference/org/apache/http/conn/ManagedClientConnection.html\">managed</a></code> client connections. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractCollection.html\">AbstractCollection</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class <code>AbstractCollection</code> is an abstract implementation of the <code>Collection</code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/tsccm/AbstractConnPool.html\">AbstractConnPool</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract connection pool. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/AbstractCookieAttributeHandler.html\">AbstractCookieAttributeHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/AbstractCookieSpec.html\">AbstractCookieSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract cookie specification which can delegate the job of parsing, ;; validation or matching cookie attributes to a number of arbitrary ;; <code><a href=\"/reference/org/apache/http/cookie/CookieAttributeHandler.html\">CookieAttributeHandler</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/AbstractCursor.html\">AbstractCursor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is an abstract cursor class that handles a lot of the common code ;; that all cursors need to deal with and is provided for convenience reasons. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/AbstractCursor.SelfContentObserver.html\">AbstractCursor.SelfContentObserver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Cursors use this class to track changes others make to their URI. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/AbstractExecutorService.html\">AbstractExecutorService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides default implementations of <code><a href=\"/reference/java/util/concurrent/ExecutorService.html\">ExecutorService</a></code> ;; execution methods. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/AbstractHttpClient.html\">AbstractHttpClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Convenience base class for HTTP client implementations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/AbstractHttpClientConnection.html\">AbstractHttpClientConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract client-side HTTP connection capable of transmitting and receiving data ;; using arbitrary <code><a href=\"/reference/org/apache/http/io/SessionInputBuffer.html\">SessionInputBuffer</a></code> and <code><a href=\"/reference/org/apache/http/io/SessionOutputBuffer.html\">SessionOutputBuffer</a></code> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/AbstractHttpEntity.html\">AbstractHttpEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for entities. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/AbstractHttpMessage.html\">AbstractHttpMessage</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of an HTTP message that can be modified. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/AbstractHttpParams.html\">AbstractHttpParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for parameter collections. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/AbstractHttpServerConnection.html\">AbstractHttpServerConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract server-side HTTP connection capable of transmitting and receiving data ;; using arbitrary <code><a href=\"/reference/org/apache/http/io/SessionInputBuffer.html\">SessionInputBuffer</a></code> and <code><a href=\"/reference/org/apache/http/io/SessionOutputBuffer.html\">SessionOutputBuffer</a></code> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/AbstractInputMethodService.html\">AbstractInputMethodService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AbstractInputMethodService provides a abstract base class for input methods. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/AbstractInputMethodService.AbstractInputMethodImpl.html\">AbstractInputMethodService.AbstractInputMethodImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for derived classes to implement their <code><a href=\"/reference/android/view/inputmethod/InputMethod.html\">InputMethod</a></code> ;; interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/AbstractInputMethodService.AbstractInputMethodSessionImpl.html\">AbstractInputMethodService.AbstractInputMethodSessionImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for derived classes to implement their <code><a href=\"/reference/android/view/inputmethod/InputMethodSession.html\">InputMethodSession</a></code> ;; interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/spi/AbstractInterruptibleChannel.html\">AbstractInterruptibleChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AbstractInterruptibleChannel</code> is the root class for interruptible ;; channels. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractList.html\">AbstractList</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AbstractList</code> is an abstract implementation of the <code>List</code> interface, optimized ;; for a backing store which supports random access. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractMap.html\">AbstractMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A base class for <code>Map</code> implementations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractMap.SimpleEntry.html\">AbstractMap.SimpleEntry</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A key-value mapping with mutable values. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractMap.SimpleImmutableEntry.html\">AbstractMap.SimpleImmutableEntry</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An immutable key-value mapping. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/AbstractMessageParser.html\">AbstractMessageParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Message parser base class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/AbstractMessageWriter.html\">AbstractMessageWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/AbstractMethodError.html\">AbstractMethodError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown by the VM when an abstract method is called. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/AbstractOwnableSynchronizer.html\">AbstractOwnableSynchronizer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A synchronizer that may be exclusively owned by a thread. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/AbstractPooledConnAdapter.html\">AbstractPooledConnAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract adapter from pool <code><a href=\"/reference/org/apache/http/impl/conn/AbstractPoolEntry.html\">entries</a></code> to ;; <code><a href=\"/reference/org/apache/http/conn/ManagedClientConnection.html\">managed</a></code> ;; client connections. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/AbstractPoolEntry.html\">AbstractPoolEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A pool entry for use by connection manager implementations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/prefs/AbstractPreferences.html\">AbstractPreferences</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This abstract class is a partial implementation of the abstract class ;; Preferences, which can be used to simplify <code>Preferences</code> provider's ;; implementation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractQueue.html\">AbstractQueue</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides skeletal implementations of some <code><a href=\"/reference/java/util/Queue.html\">Queue</a></code> ;; operations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html\">AbstractQueuedLongSynchronizer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A version of <code><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html\">AbstractQueuedSynchronizer</a></code> in ;; which synchronization state is maintained as a <tt>long</tt>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.ConditionObject.html\">AbstractQueuedLongSynchronizer.ConditionObject</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Condition implementation for a <code><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html\">AbstractQueuedLongSynchronizer</a></code> serving as the basis of a <code><a href=\"/reference/java/util/concurrent/locks/Lock.html\">Lock</a></code> implementation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html\">AbstractQueuedSynchronizer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides a framework for implementing blocking locks and related ;; synchronizers (semaphores, events, etc) that rely on ;; first-in-first-out (FIFO) wait queues. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.ConditionObject.html\">AbstractQueuedSynchronizer.ConditionObject</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Condition implementation for a <code><a href=\"/reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html\">AbstractQueuedSynchronizer</a></code> serving as the basis of a <code><a href=\"/reference/java/util/concurrent/locks/Lock.html\">Lock</a></code> implementation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/spi/AbstractSelectableChannel.html\">AbstractSelectableChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AbstractSelectableChannel</code> is the base implementation class for ;; selectable channels. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/spi/AbstractSelectionKey.html\">AbstractSelectionKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AbstractSelectionKey</code> is the base implementation class for selection keys. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/spi/AbstractSelector.html\">AbstractSelector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AbstractSelector</code> is the base implementation class for selectors. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractSequentialList.html\">AbstractSequentialList</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AbstractSequentialList is an abstract implementation of the List interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/AbstractSessionInputBuffer.html\">AbstractSessionInputBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for session input buffers that stream data ;; from a <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/AbstractSessionOutputBuffer.html\">AbstractSessionOutputBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for session output buffers that stream data ;; to an <code><a href=\"/reference/java/io/OutputStream.html\">OutputStream</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/AbstractSet.html\">AbstractSet</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An AbstractSet is an abstract implementation of the Set interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/AbstractThreadedSyncAdapter.html\">AbstractThreadedSyncAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract implementation of a SyncAdapter that spawns a thread to invoke a sync operation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ssl/AbstractVerifier.html\">AbstractVerifier</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for all standard <code><a href=\"/reference/org/apache/http/conn/ssl/X509HostnameVerifier.html\">X509HostnameVerifier</a></code> ;; implementations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/AbstractWindowedCursor.html\">AbstractWindowedCursor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A base class for Cursors that store their data in <code><a href=\"/reference/android/database/CursorWindow.html\">CursorWindow</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AccelerateDecelerateInterpolator.html\">AccelerateDecelerateInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the rate of change starts and ends slowly but ;; accelerates through the middle. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AccelerateInterpolator.html\">AccelerateInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the rate of change starts out slowly and ;; and then accelerates. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AccessControlContext.html\">AccessControlContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AccessControlException.html\">AccessControlException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AccessControlException</code> is thrown if the access control infrastructure ;; denies protected access due to missing permissions. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AccessController.html\">AccessController</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/AccessibilityDelegateCompat.html\">AccessibilityDelegateCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing <code><a href=\"/reference/android/view/View.AccessibilityDelegate.html\">View.AccessibilityDelegate</a></code> introduced after ;; API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityEvent.html\">AccessibilityEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; This class represents accessibility events that are sent by the system when ;; something notable happens in the user interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/accessibility/AccessibilityEventCompat.html\">AccessibilityEventCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/view/accessibility/AccessibilityEvent.html\">AccessibilityEvent</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityEventSource.html\">AccessibilityEventSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface is implemented by classes source of <code><a href=\"/reference/android/view/accessibility/AccessibilityEvent.html\">AccessibilityEvent</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityManager.html\">AccessibilityManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">System level service that serves as an event dispatch for <code><a href=\"/reference/android/view/accessibility/AccessibilityEvent.html\">AccessibilityEvent</a></code>s, ;; and provides facilities for querying the accessibility state of the system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityManager.AccessibilityStateChangeListener.html\">AccessibilityManager.AccessibilityStateChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for the system accessibility state. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/accessibility/AccessibilityManagerCompat.html\">AccessibilityManagerCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/view/accessibility/AccessibilityManager.html\">AccessibilityManager</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/accessibility/AccessibilityManagerCompat.AccessibilityStateChangeListenerCompat.html\">AccessibilityManagerCompat.AccessibilityStateChangeListenerCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for the accessibility state. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityNodeInfo.html\">AccessibilityNodeInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a node of the window content as well as actions that ;; can be requested from its source. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/accessibility/AccessibilityNodeInfoCompat.html\">AccessibilityNodeInfoCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing <code><a href=\"/reference/android/view/accessibility/AccessibilityNodeInfo.html\">AccessibilityNodeInfo</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityNodeProvider.html\">AccessibilityNodeProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is the contract a client should implement to enable support of a ;; virtual view hierarchy rooted at a given view for accessibility purposes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/accessibility/AccessibilityNodeProviderCompat.html\">AccessibilityNodeProviderCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing <code><a href=\"/reference/android/view/accessibility/AccessibilityNodeProvider.html\">AccessibilityNodeProvider</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/accessibility/AccessibilityRecord.html\">AccessibilityRecord</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a record in an <code><a href=\"/reference/android/view/accessibility/AccessibilityEvent.html\">AccessibilityEvent</a></code> and contains information ;; about state change of its source <code><a href=\"/reference/android/view/View.html\">View</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/accessibility/AccessibilityRecordCompat.html\">AccessibilityRecordCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing <code><a href=\"/reference/android/view/accessibility/AccessibilityRecord.html\">AccessibilityRecord</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accessibilityservice/AccessibilityService.html\">AccessibilityService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An accessibility service runs in the background and receives callbacks by the system ;; when <code><a href=\"/reference/android/view/accessibility/AccessibilityEvent.html\">AccessibilityEvent</a></code>s are fired. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accessibilityservice/AccessibilityServiceInfo.html\">AccessibilityServiceInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class describes an <code><a href=\"/reference/android/accessibilityservice/AccessibilityService.html\">AccessibilityService</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/accessibilityservice/AccessibilityServiceInfoCompat.html\">AccessibilityServiceInfoCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/accessibilityservice/AccessibilityService.html\">AccessibilityService</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/AccessibleObject.html\">AccessibleObject</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AccessibleObject</code> is the superclass of all member reflection classes ;; (Field, Constructor, Method). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/Account.html\">Account</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Value type that represents an Account in the <code><a href=\"/reference/android/accounts/AccountManager.html\">AccountManager</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AccountAuthenticatorActivity.html\">AccountAuthenticatorActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for implementing an Activity that is used to help implement an ;; AbstractAccountAuthenticator. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AccountAuthenticatorResponse.html\">AccountAuthenticatorResponse</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Object used to communicate responses back to the AccountManager ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AccountManager.html\">AccountManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides access to a centralized registry of the user's ;; online accounts. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AccountManagerCallback.html\">AccountManagerCallback</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AccountManagerFuture.html\">AccountManagerFuture</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <tt>AccountManagerFuture</tt> represents the result of an asynchronous ;; <code><a href=\"/reference/android/accounts/AccountManager.html\">AccountManager</a></code> call. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AccountsException.html\">AccountsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/acl/Acl.html\">Acl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Access Control List</i> (<b>ACL</b>) interface definition. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/acl/AclEntry.html\">AclEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Access Control List Entry</i> interface definition. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/acl/AclNotFoundException.html\">AclNotFoundException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception, that is thrown when a reference to a non-existent <i>Access ;; Control List</i> (ACL) is made. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/AcousticEchoCanceler.html\">AcousticEchoCanceler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Acoustic Echo Canceler (AEC). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActionBar.html\">ActionBar</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A window feature at the top of the activity that may display the activity title, navigation ;; modes, and other interactive items. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBar.html\">ActionBar</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A window feature at the top of the activity that may display the activity title, navigation ;; modes, and other interactive items. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActionBar.LayoutParams.html\">ActionBar.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Per-child layout information associated with action bar custom views. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBar.LayoutParams.html\">ActionBar.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Per-child layout information associated with action bar custom views. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActionBar.OnMenuVisibilityListener.html\">ActionBar.OnMenuVisibilityListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for receiving events when action bar menus are shown or hidden. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBar.OnMenuVisibilityListener.html\">ActionBar.OnMenuVisibilityListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for receiving events when <code><a href=\"/reference/android/support/v7/app/ActionBar.html\">ActionBar</a></code> items are shown or hidden. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActionBar.OnNavigationListener.html\">ActionBar.OnNavigationListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener interface for ActionBar navigation events. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBar.OnNavigationListener.html\">ActionBar.OnNavigationListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for receiving <code><a href=\"/reference/android/support/v7/app/ActionBar.html\">ActionBar</a></code> navigation events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActionBar.Tab.html\">ActionBar.Tab</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A tab in the action bar. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBar.Tab.html\">ActionBar.Tab</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A tab in the action bar that manages the hiding and showing of <code><a href=\"/reference/android/support/v4/app/Fragment.html\">Fragment</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActionBar.TabListener.html\">ActionBar.TabListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface invoked when a tab is focused, unfocused, added, or removed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBar.TabListener.html\">ActionBar.TabListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface invoked when an <code><a href=\"/reference/android/support/v7/app/ActionBar.Tab.html\">ActionBar.Tab</a></code> is focused, unfocused, added, or ;; removed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/ActionBarActivity.html\">ActionBarActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for activities that use the <a ;; href=\"/tools/extras/support-library.html\">support library</a> action bar features. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/ActionBarDrawerToggle.html\">ActionBarDrawerToggle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides a handy way to tie together the functionality of ;; <code><a href=\"/reference/android/support/v4/widget/DrawerLayout.html\">DrawerLayout</a></code> and the framework <code>ActionBar</code> to implement the recommended ;; design for navigation drawers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/ActionBarDrawerToggle.Delegate.html\">ActionBarDrawerToggle.Delegate</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/ActionBarDrawerToggle.DelegateProvider.html\">ActionBarDrawerToggle.DelegateProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Allows an implementing Activity to return an <code><a href=\"/reference/android/support/v4/app/ActionBarDrawerToggle.Delegate.html\">ActionBarDrawerToggle.Delegate</a></code> to use ;; with ActionBarDrawerToggle. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/view/ActionMode.html\">ActionMode</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a contextual mode of the user interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ActionMode.html\">ActionMode</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a contextual mode of the user interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/view/ActionMode.Callback.html\">ActionMode.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for action modes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ActionMode.Callback.html\">ActionMode.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for action modes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/ActionProvider.html\">ActionProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is a mediator for accomplishing a given task, for example sharing a file. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ActionProvider.html\">ActionProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An ActionProvider defines rich menu interaction in a single component. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/ActionProvider.VisibilityListener.html\">ActionProvider.VisibilityListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens to changes in visibility as reported by <code><a href=\"/reference/android/support/v4/view/ActionProvider.html#refreshVisibility()\">refreshVisibility()</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ActionProvider.VisibilityListener.html\">ActionProvider.VisibilityListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens to changes in visibility as reported by <code><a href=\"/reference/android/view/ActionProvider.html#refreshVisibility()\">refreshVisibility()</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Activity.html\">Activity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An activity is a single, focused thing that the user can do. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/ActivityCompat.html\">ActivityCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/app/Activity.html\">Activity</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityGroup.html\">ActivityGroup</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 13. ;; Use the new <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> and <code><a href=\"/reference/android/app/FragmentManager.html\">FragmentManager</a></code> APIs ;; instead; these are also ;; available on older platforms through the Android compatibility package. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/ActivityInfo.html\">ActivityInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about a particular application ;; activity or receiver. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/pm/ActivityInfoCompat.html\">ActivityInfoCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/content/pm/ActivityInfo.html\">ActivityInfo</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/ActivityInstrumentationTestCase.html\">ActivityInstrumentationTestCase</a><T extends <a href=\"/reference/android/app/Activity.html\">Activity</a>></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 3. ;; new tests should be written using ;; <code><a href=\"/reference/android/test/ActivityInstrumentationTestCase2.html\">ActivityInstrumentationTestCase2</a></code>, which provides more options for ;; configuring the Activity under test ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/ActivityInstrumentationTestCase2.html\">ActivityInstrumentationTestCase2</a><T extends <a href=\"/reference/android/app/Activity.html\">Activity</a>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides functional testing of a single activity. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.html\">ActivityManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interact with the overall activities running in the system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.MemoryInfo.html\">ActivityManager.MemoryInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about the available memory through ;; <code><a href=\"/reference/android/app/ActivityManager.html#getMemoryInfo(android.app.ActivityManager.MemoryInfo)\">getMemoryInfo(ActivityManager.MemoryInfo)</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.ProcessErrorStateInfo.html\">ActivityManager.ProcessErrorStateInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about any processes that are in an error condition. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.RecentTaskInfo.html\">ActivityManager.RecentTaskInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about tasks that the user has most recently ;; started or visited. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.RunningAppProcessInfo.html\">ActivityManager.RunningAppProcessInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about a running process. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.RunningServiceInfo.html\">ActivityManager.RunningServiceInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about a particular Service that is ;; currently running in the system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityManager.RunningTaskInfo.html\">ActivityManager.RunningTaskInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about a particular task that is currently ;; \"running\" in the system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ActivityNotFoundException.html\">ActivityNotFoundException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This exception is thrown when a call to <code><a href=\"/reference/android/content/Context.html#startActivity(android.content.Intent)\">startActivity(Intent)</a></code> or ;; one of its variants fails because an Activity can not be found to execute ;; the given Intent. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ActivityOptions.html\">ActivityOptions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper class for building an options Bundle that can be used with ;; <code><a href=\"/reference/android/content/Context.html#startActivity(android.content.Intent, android.os.Bundle)\">Context.startActivity(Intent, Bundle)</a></code> and related methods. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/ActivityOptionsCompat.html\">ActivityOptionsCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/app/ActivityOptions.html\">ActivityOptions</a></code> ;; introduced in API level 16 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/ActivityTestCase.html\">ActivityTestCase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is common code used to support Activity test cases. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/ActivityUnitTestCase.html\">ActivityUnitTestCase</a><T extends <a href=\"/reference/android/app/Activity.html\">Activity</a>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides isolated testing of a single activity. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Adapter.html\">Adapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An Adapter object acts as a bridge between an <code><a href=\"/reference/android/widget/AdapterView.html\">AdapterView</a></code> and the ;; underlying data for that view. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterView.html\">AdapterView</a><T extends <a href=\"/reference/android/widget/Adapter.html\">Adapter</a>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An AdapterView is a view whose children are determined by an <code><a href=\"/reference/android/widget/Adapter.html\">Adapter</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterView.AdapterContextMenuInfo.html\">AdapterView.AdapterContextMenuInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extra menu information provided to the ;; <code><a href=\"/reference/android/view/View.OnCreateContextMenuListener.html#onCreateContextMenu(android.view.ContextMenu, android.view.View, android.view.ContextMenu.ContextMenuInfo)\">onCreateContextMenu(ContextMenu, View, ContextMenuInfo)</a></code> ;; callback when a context menu is brought up for this AdapterView. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterView.OnItemClickListener.html\">AdapterView.OnItemClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when an item in this ;; AdapterView has been clicked. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterView.OnItemLongClickListener.html\">AdapterView.OnItemLongClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when an item in this ;; view has been clicked and held. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterView.OnItemSelectedListener.html\">AdapterView.OnItemSelectedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when ;; an item in this view has been selected. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterViewAnimator.html\">AdapterViewAnimator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for a <code><a href=\"/reference/android/widget/AdapterView.html\">AdapterView</a></code> that will perform animations ;; when switching between its views. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AdapterViewFlipper.html\">AdapterViewFlipper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Simple <code><a href=\"/reference/android/widget/ViewAnimator.html\">ViewAnimator</a></code> that will animate between two or more views ;; that have been added to it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/Address.html\">Address</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class representing an Address, i.e, a set of Strings describing a location. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/Adler32.html\">Adler32</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Adler-32 class is used to compute the <code>Adler32</code> checksum from a set ;; of data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Advanceable.html\">Advanceable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface can be implemented by any collection-type view which has a notion of ;; progressing through its set of children. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/AlarmClock.html\">AlarmClock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The AlarmClock provider contains an Intent action and extras that can be used ;; to start an Activity to set a new alarm in an alarm clock application. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/AlarmManager.html\">AlarmManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides access to the system alarm services. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/AlertDialog.html\">AlertDialog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A subclass of Dialog that can display one, two or three buttons. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/AlertDialog.Builder.html\">AlertDialog.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AlgorithmParameterGenerator.html\">AlgorithmParameterGenerator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AlgorithmParameterGenerator</code> is an engine class which is capable of ;; generating parameters for the algorithm it was initialized with. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AlgorithmParameterGeneratorSpi.html\">AlgorithmParameterGeneratorSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AlgorithmParameterGeneratorSpi</code> is the Service Provider Interface ;; (SPI) definition for <code>AlgorithmParameterGenerator</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AlgorithmParameters.html\">AlgorithmParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AlgorithmParameters</code> is an engine class which provides algorithm ;; parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/AlgorithmParameterSpec.html\">AlgorithmParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The marker interface for algorithm parameter specifications. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AlgorithmParametersSpi.html\">AlgorithmParametersSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>AlgorithmParametersSpi</code> is the Service Provider Interface (SPI) ;; definition for <code>AlgorithmParameters</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/AliasActivity.html\">AliasActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Stub activity that launches another activity (and then finishes itself) ;; based on information in its component's manifest meta-data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/AlignmentSpan.html\">AlignmentSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/AlignmentSpan.Standard.html\">AlignmentSpan.Standard</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/params/AllClientPNames.html\">AllClientPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Collected parameter names for the HttpClient module. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Allocation.html\">Allocation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> This class provides the primary method through which data is passed to ;; and from RenderScript kernels. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Allocation.MipmapControl.html\">Allocation.MipmapControl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Controls mipmap behavior when using the bitmap creation and update ;; functions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/AllocationAdapter.html\">AllocationAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Only intended for use by generated reflected code. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ssl/AllowAllHostnameVerifier.html\">AllowAllHostnameVerifier</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The ALLOW_ALL HostnameVerifier essentially turns hostname verification ;; off. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AllPermission.html\">AllPermission</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AlphaAnimation.html\">AlphaAnimation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An animation that controls the alpha level of an object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AlphabetIndexer.html\">AlphabetIndexer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A helper class for adapters that implement the SectionIndexer interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/AlreadyConnectedException.html\">AlreadyConnectedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>AlreadyConnectedException</code> is thrown when an attempt is made to ;; connect a SocketChannel that is already connected. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/AlteredCharSequence.html\">AlteredCharSequence</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An AlteredCharSequence is a CharSequence that is largely mirrored from ;; another CharSequence, except that a specified range of characters are ;; mirrored from a different char array instead. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AnalogClock.html\">AnalogClock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This widget display an analogic clock with two hands for hours and ;; minutes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/AndroidCharacter.html\">AndroidCharacter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AndroidCharacter exposes some character properties that are not ;; easily accessed from java.lang.Character. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/AndroidException.html\">AndroidException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for all checked exceptions thrown by the Android frameworks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/http/AndroidHttpClient.html\">AndroidHttpClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of the Apache <code><a href=\"/reference/org/apache/http/impl/client/DefaultHttpClient.html\">DefaultHttpClient</a></code> that is configured with ;; reasonable default settings and registered schemes for Android. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/AndroidRuntimeException.html\">AndroidRuntimeException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for all unchecked exceptions thrown by the Android frameworks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/AndroidTestCase.html\">AndroidTestCase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extend this if you need to access Resources or other things that depend on Activity Context. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/AndroidTestRunner.html\">AndroidTestRunner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/Animatable.html\">Animatable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface that drawables suporting animations should implement. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/Animation.html\">Animation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstraction for an Animation that can be applied to Views, Surfaces, or ;; other objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/Animation.AnimationListener.html\">Animation.AnimationListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>An animation listener receives notifications from an animation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/Animation.Description.html\">Animation.Description</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class to parse a string description of a size. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/AnimationDrawable.html\">AnimationDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An object used to create frame-by-frame animations, defined by a series of Drawable objects, ;; which can be used as a View object's background. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AnimationSet.html\">AnimationSet</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a group of Animations that should be played together. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AnimationUtils.html\">AnimationUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines common utilities for working with animations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/Animator.html\">Animator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is the superclass for classes which provide basic support for animations which can be ;; started, ended, and have <code>AnimatorListeners</code> added to them. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/Animator.AnimatorListener.html\">Animator.AnimatorListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>An animation listener receives notifications from an animation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/AnimatorInflater.html\">AnimatorInflater</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to instantiate animator XML files into Animator objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/AnimatorListenerAdapter.html\">AnimatorListenerAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This adapter class provides empty implementations of the methods from <code><a href=\"/reference/android/animation/Animator.AnimatorListener.html\">Animator.AnimatorListener</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/AnimatorSet.html\">AnimatorSet</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class plays a set of <code><a href=\"/reference/android/animation/Animator.html\">Animator</a></code> objects in the specified order. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/AnimatorSet.Builder.html\">AnimatorSet.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>Builder</code> object is a utility class to facilitate adding animations to a ;; <code>AnimatorSet</code> along with the relationships between the various animations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/AnnotatedElement.html\">AnnotatedElement</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface provides reflective access to annotation information. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Annotation.html\">Annotation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Annotations are simple key-value pairs that are preserved across ;; TextView save/restore cycles and can be used to keep application-specific ;; data that needs to be maintained for regions of text. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/Annotation.html\">Annotation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the interface implemented by all annotations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/Annotation.html\">Annotation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper for a text attribute value which represents an annotation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/AnnotationFormatError.html\">AnnotationFormatError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that an annotation in the binary representation of a class is ;; syntactically incorrect and the annotation parser is unable to process it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/AnnotationTypeMismatchException.html\">AnnotationTypeMismatchException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that an annotation type has changed since it was compiled or ;; serialized. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AnticipateInterpolator.html\">AnticipateInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the change starts backward then flings forward. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/AnticipateOvershootInterpolator.html\">AnticipateOvershootInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the change starts backward then flings forward and overshoots ;; the target value and finally goes back to the final value. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Appendable.html\">Appendable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Declares methods to append characters or character sequences. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Application.html\">Application</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for those who need to maintain global application state. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Application.ActivityLifecycleCallbacks.html\">Application.ActivityLifecycleCallbacks</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Application.OnProvideAssistDataListener.html\">Application.OnProvideAssistDataListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for use with <code><a href=\"/reference/android/app/Application.html#registerOnProvideAssistDataListener(android.app.Application.OnProvideAssistDataListener)\">registerOnProvideAssistDataListener(Application.OnProvideAssistDataListener)</a></code> ;; and <code><a href=\"/reference/android/app/Application.html#unregisterOnProvideAssistDataListener(android.app.Application.OnProvideAssistDataListener)\">unregisterOnProvideAssistDataListener(Application.OnProvideAssistDataListener)</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ApplicationErrorReport.html\">ApplicationErrorReport</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes an application error. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ApplicationErrorReport.AnrInfo.html\">ApplicationErrorReport.AnrInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes an application not responding error. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ApplicationErrorReport.BatteryInfo.html\">ApplicationErrorReport.BatteryInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes a battery usage report. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ApplicationErrorReport.CrashInfo.html\">ApplicationErrorReport.CrashInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes an application crash. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ApplicationErrorReport.RunningServiceInfo.html\">ApplicationErrorReport.RunningServiceInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes a running service report. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/ApplicationInfo.html\">ApplicationInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about a particular application. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/ApplicationInfo.DisplayNameComparator.html\">ApplicationInfo.DisplayNameComparator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/ApplicationTestCase.html\">ApplicationTestCase</a><T extends <a href=\"/reference/android/app/Application.html\">Application</a>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This test case provides a framework in which you can test Application classes in ;; a controlled environment. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/appwidget/AppWidgetHost.html\">AppWidgetHost</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AppWidgetHost provides the interaction with the AppWidget service for apps, ;; like the home screen, that want to embed AppWidgets in their UI. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/appwidget/AppWidgetHostView.html\">AppWidgetHostView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides the glue to show AppWidget views. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/appwidget/AppWidgetManager.html\">AppWidgetManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Updates AppWidget state; gets information about installed AppWidget providers and other ;; AppWidget related state. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/appwidget/AppWidgetProvider.html\">AppWidgetProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A convenience class to aid in implementing an AppWidget provider. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/appwidget/AppWidgetProviderInfo.html\">AppWidgetProviderInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the meta data for an installed AppWidget provider. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/shapes/ArcShape.html\">ArcShape</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Creates an arc shape. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/ArgbEvaluator.html\">ArgbEvaluator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This evaluator can be used to perform type interpolation between integer ;; values that represent ARGB colors. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ArithmeticException.html\">ArithmeticException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when the an invalid arithmetic operation is attempted. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/Array.html\">Array</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides static methods to create and access arrays dynamically. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/Array.html\">Array</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Java representation of the SQL <code>ARRAY</code> type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ArrayAdapter.html\">ArrayAdapter</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A concrete BaseAdapter that is backed by an array of arbitrary ;; objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ArrayBlockingQueue.html\">ArrayBlockingQueue</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A bounded <code><a href=\"/reference/java/util/concurrent/BlockingQueue.html\">blocking queue</a></code> backed by an ;; array. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/ArrayDeque.html\">ArrayDeque</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Resizable-array implementation of the <code><a href=\"/reference/java/util/Deque.html\">Deque</a></code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ArrayIndexOutOfBoundsException.html\">ArrayIndexOutOfBoundsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when the an array is indexed with a value less than zero, or greater ;; than or equal to the size of the array. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/ArrayList.html\">ArrayList</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">ArrayList is an implementation of <code><a href=\"/reference/java/util/List.html\">List</a></code>, backed by an array. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Arrays.html\">Arrays</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Arrays</code> contains static methods which operate on arrays. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ArrayStoreException.html\">ArrayStoreException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program attempts to store an element of an incompatible type in ;; an array. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/ArrowKeyMovementMethod.html\">ArrowKeyMovementMethod</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A movement method that provides cursor movement and selection. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/junit/framework/Assert.html\">Assert</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A set of assert methods. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/AssertionError.html\">AssertionError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when an assertion has failed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/AssertionFailedError.html\">AssertionFailedError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 16. ;; use junit.framework.AssertionFailedError ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/junit/framework/AssertionFailedError.html\">AssertionFailedError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when an assertion failed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/AssetFileDescriptor.html\">AssetFileDescriptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">File descriptor of an entry in the AssetManager. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/AssetFileDescriptor.AutoCloseInputStream.html\">AssetFileDescriptor.AutoCloseInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An InputStream you can create on a ParcelFileDescriptor, which will ;; take care of calling <code><a href=\"/reference/android/os/ParcelFileDescriptor.html#close()\">ParcelFileDescritor.close()</a></code> for you when the stream is closed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/AssetFileDescriptor.AutoCloseOutputStream.html\">AssetFileDescriptor.AutoCloseOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An OutputStream you can create on a ParcelFileDescriptor, which will ;; take care of calling <code><a href=\"/reference/android/os/ParcelFileDescriptor.html#close()\">ParcelFileDescritor.close()</a></code> for you when the stream is closed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/AssetManager.html\">AssetManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to an application's raw asset files; see <code><a href=\"/reference/android/content/res/Resources.html\">Resources</a></code> ;; for the way most applications will want to retrieve their resource data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/AssetManager.AssetInputStream.html\">AssetManager.AssetInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/AsynchronousCloseException.html\">AsynchronousCloseException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>AsynchronousCloseException</code> is thrown when the underlying channel ;; for an I/O operation is closed by another thread. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AsyncPlayer.html\">AsyncPlayer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Plays a series of audio URIs, but does all the hard work on another thread ;; so that any slowness with preparing or loading doesn't block the calling thread. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/AsyncQueryHandler.html\">AsyncQueryHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A helper class to help make handling asynchronous <code><a href=\"/reference/android/content/ContentResolver.html\">ContentResolver</a></code> ;; queries easier. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/AsyncQueryHandler.WorkerArgs.html\">AsyncQueryHandler.WorkerArgs</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/AsyncQueryHandler.WorkerHandler.html\">AsyncQueryHandler.WorkerHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/AsyncTask.html\">AsyncTask</a><Params, Progress, Result></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>AsyncTask enables proper and easy use of the UI thread. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/AsyncTask.Status.html\">AsyncTask.Status</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates the current status of the task. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/AsyncTaskLoader.html\">AsyncTaskLoader</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract Loader that provides an <code><a href=\"/reference/android/os/AsyncTask.html\">AsyncTask</a></code> to do the work. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/AsyncTaskLoader.html\">AsyncTaskLoader</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/content/AsyncTaskLoader.html\">AsyncTaskLoader</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicBoolean.html\">AtomicBoolean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>boolean</code> value that may be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/util/AtomicFile.html\">AtomicFile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/util/AtomicFile.html\">AtomicFile</a></code>, ;; a helper class for performing atomic operations on a file by creating a ;; backup file until a write has successfully completed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/AtomicFile.html\">AtomicFile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper class for performing atomic operations on a file by creating a ;; backup file until a write has successfully completed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicInteger.html\">AtomicInteger</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>int</code> value that may be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicIntegerArray.html\">AtomicIntegerArray</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>int</code> array in which elements may be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicIntegerFieldUpdater.html\">AtomicIntegerFieldUpdater</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A reflection-based utility that enables atomic updates to ;; designated <code>volatile int</code> fields of designated classes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicLong.html\">AtomicLong</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>long</code> value that may be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicLongArray.html\">AtomicLongArray</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>long</code> array in which elements may be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicLongFieldUpdater.html\">AtomicLongFieldUpdater</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A reflection-based utility that enables atomic updates to ;; designated <code>volatile long</code> fields of designated classes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicMarkableReference.html\">AtomicMarkableReference</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>AtomicMarkableReference</code> maintains an object reference ;; along with a mark bit, that can be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicReference.html\">AtomicReference</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An object reference that may be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicReferenceArray.html\">AtomicReferenceArray</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An array of object references in which elements may be updated ;; atomically. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicReferenceFieldUpdater.html\">AtomicReferenceFieldUpdater</a><T, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A reflection-based utility that enables atomic updates to ;; designated <code>volatile</code> reference fields of designated ;; classes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/atomic/AtomicStampedReference.html\">AtomicStampedReference</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>AtomicStampedReference</code> maintains an object reference ;; along with an integer \"stamp\", that can be updated atomically. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/Attr.html\">Attr</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>Attr</code> interface represents an attribute in an ;; <code>Element</code> object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/AttributedCharacterIterator.html\">AttributedCharacterIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extends the ;; <code><a href=\"/reference/java/text/CharacterIterator.html\">CharacterIterator</a></code> interface, adding support for iterating over ;; attributes and not only characters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/AttributedCharacterIterator.Attribute.html\">AttributedCharacterIterator.Attribute</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines keys for text attributes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/AttributedString.html\">AttributedString</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Holds a string with attributes describing the characters of ;; this string. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/AttributeList.html\">AttributeList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 1. ;; This interface has been replaced by the SAX2 ;; <code><a href=\"/reference/org/xml/sax/Attributes.html\">Attributes</a></code> ;; interface, which includes Namespace support.</em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/helpers/AttributeListImpl.html\">AttributeListImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 1. ;; This class implements a deprecated interface, ;; <code><a href=\"/reference/org/xml/sax/AttributeList.html\">AttributeList</a></code>; ;; that interface has been replaced by ;; <code><a href=\"/reference/org/xml/sax/Attributes.html\">Attributes</a></code>, ;; which is implemented in the ;; <code><a href=\"/reference/org/xml/sax/helpers/AttributesImpl.html\">AttributesImpl</a></code> helper class.</em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/Attributes.html\">Attributes</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>Attributes</code> class is used to store values for manifest entries. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/Attributes.html\">Attributes</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for a list of XML attributes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/Attributes.Name.html\">Attributes.Name</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The name part of the name/value pairs constituting an attribute as ;; defined by the specification of the JAR manifest. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/Attributes2.html\">Attributes2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 extension to augment the per-attribute information ;; provided though <code><a href=\"/reference/org/xml/sax/Attributes.html\">Attributes</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/Attributes2Impl.html\">Attributes2Impl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 extension helper for additional Attributes information, ;; implementing the <code><a href=\"/reference/org/xml/sax/ext/Attributes2.html\">Attributes2</a></code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/AttributeSet.html\">AttributeSet</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A collection of attributes, as found associated with a tag in an XML ;; document. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/helpers/AttributesImpl.html\">AttributesImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of the Attributes interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-12\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/rtp/AudioCodec.html\">AudioCodec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class defines a collection of audio codecs to be used with ;; <code><a href=\"/reference/android/net/rtp/AudioStream.html\">AudioStream</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/AudioEffect.html\">AudioEffect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AudioEffect is the base class for controlling audio effects provided by the android audio ;; framework. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/AudioEffect.Descriptor.html\">AudioEffect.Descriptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The effect descriptor contains information on a particular effect implemented in the ;; audio framework:<br> ;; <ul> ;; <li>type: UUID identifying the effect type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/AudioEffect.OnControlStatusChangeListener.html\">AudioEffect.OnControlStatusChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The OnControlStatusChangeListener interface defines a method called by the AudioEffect ;; when a the control of the effect engine is gained or lost by the application ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/AudioEffect.OnEnableStatusChangeListener.html\">AudioEffect.OnEnableStatusChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The OnEnableStatusChangeListener interface defines a method called by the AudioEffect ;; when a the enabled state of the effect engine was changed by the controlling application. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioFormat.html\">AudioFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The AudioFormat class is used to access a number of audio format and ;; channel configuration constants. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-12\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/rtp/AudioGroup.html\">AudioGroup</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An AudioGroup is an audio hub for the speaker, the microphone, and ;; <code><a href=\"/reference/android/net/rtp/AudioStream.html\">AudioStream</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioManager.html\">AudioManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AudioManager provides access to volume and ringer mode control. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioManager.OnAudioFocusChangeListener.html\">AudioManager.OnAudioFocusChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when the audio focus of the system is ;; updated. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioRecord.html\">AudioRecord</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The AudioRecord class manages the audio resources for Java applications ;; to record audio from the audio input hardware of the platform. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioRecord.OnRecordPositionUpdateListener.html\">AudioRecord.OnRecordPositionUpdateListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when an AudioRecord has ;; reached a notification marker set by <code><a href=\"/reference/android/media/AudioRecord.html#setNotificationMarkerPosition(int)\">setNotificationMarkerPosition(int)</a></code> ;; or for periodic updates on the progress of the record head, as set by ;; <code><a href=\"/reference/android/media/AudioRecord.html#setPositionNotificationPeriod(int)\">setPositionNotificationPeriod(int)</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-12\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/rtp/AudioStream.html\">AudioStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An AudioStream is a <code><a href=\"/reference/android/net/rtp/RtpStream.html\">RtpStream</a></code> which carrys audio payloads over ;; Real-time Transport Protocol (RTP). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioTrack.html\">AudioTrack</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The AudioTrack class manages and plays a single audio resource for Java applications. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/AudioTrack.OnPlaybackPositionUpdateListener.html\">AudioTrack.OnPlaybackPositionUpdateListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when the playback head position of ;; an AudioTrack has reached a notification marker or has increased by a certain period. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AUTH.html\">AUTH</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants and static helpers related to the HTTP authentication. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AuthenticationException.html\">AuthenticationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals a failure in authentication process </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/AuthenticationHandler.html\">AuthenticationHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/Authenticator.html\">Authenticator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An implementation of this class is able to obtain authentication information ;; for a connection in several ways. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/Authenticator.RequestorType.html\">Authenticator.RequestorType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Enumeration class for the origin of the authentication request. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AuthenticatorDescription.html\">AuthenticatorDescription</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/android/os/Parcelable.html\">Parcelable</a></code> value type that contains information about an account authenticator. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/accounts/AuthenticatorException.html\">AuthenticatorException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/params/AuthParamBean.html\">AuthParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/params/AuthParams.html\">AuthParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements an adaptor around the <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code> interface ;; to simplify manipulation of the HTTP authentication specific parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/auth/AuthPermission.html\">AuthPermission</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/params/AuthPNames.html\">AuthPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parameter names for HttpAuth. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/params/AuthPolicy.html\">AuthPolicy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/AuthProvider.html\">AuthProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AuthScheme.html\">AuthScheme</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; This interface represents an abstract challenge-response oriented ;; authentication scheme. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/auth/AuthSchemeBase.html\">AuthSchemeBase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract authentication scheme class that serves as a basis ;; for all authentication schemes supported by HttpClient. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AuthSchemeFactory.html\">AuthSchemeFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AuthSchemeRegistry.html\">AuthSchemeRegistry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Authentication scheme registry that can be used to obtain the corresponding ;; authentication scheme implementation for a given type of authorization challenge. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AuthScope.html\">AuthScope</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The class represents an authentication scope consisting of a host name, ;; a port number, a realm name and an authentication scheme name which ;; <code><a href=\"/reference/org/apache/http/auth/Credentials.html\">Credentials</a></code> apply to. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/AuthState.html\">AuthState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides detailed information about the state of the ;; authentication process. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AutoCompleteTextView.html\">AutoCompleteTextView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>An editable text view that shows completion suggestions automatically ;; while the user is typing. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AutoCompleteTextView.OnDismissListener.html\">AutoCompleteTextView.OnDismissListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener to respond to the AutoCompleteTextView's completion list being dismissed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/AutoCompleteTextView.Validator.html\">AutoCompleteTextView.Validator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface is used to make sure that the text entered in this TextView complies to ;; a certain format. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/AutomaticGainControl.html\">AutomaticGainControl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Automatic Gain Control (AGC). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/AutoText.html\">AutoText</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class accesses a dictionary of corrections to frequent misspellings. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/AvoidXfermode.html\">AvoidXfermode</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">AvoidXfermode xfermode will draw the src everywhere except on top of the ;; opColor or, depending on the Mode, draw only on top of the opColor. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/AvoidXfermode.Mode.html\">AvoidXfermode.Mode</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_B\">B</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/BackgroundColorSpan.html\">BackgroundColorSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/prefs/BackingStoreException.html\">BackingStoreException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An exception to indicate that an error was encountered while accessing the ;; backing store. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupAgent.html\">BackupAgent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides the central interface between an ;; application and Android's data backup infrastructure. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupAgentHelper.html\">BackupAgentHelper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A convenient <code><a href=\"/reference/android/app/backup/BackupAgent.html\">BackupAgent</a></code> wrapper class that automatically manages ;; heterogeneous data sets within the backup data, each identified by a unique ;; key prefix. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupDataInput.html\">BackupDataInput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides the structured interface through which a <code><a href=\"/reference/android/app/backup/BackupAgent.html\">BackupAgent</a></code> reads ;; information from the backup data set, via its ;; <code><a href=\"/reference/android/app/backup/BackupAgent.html#onRestore(android.app.backup.BackupDataInput, int, android.os.ParcelFileDescriptor)\">onRestore()</a></code> ;; method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupDataInputStream.html\">BackupDataInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides an <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code>-like interface for accessing an ;; entity's data during a restore operation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupDataOutput.html\">BackupDataOutput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides the structured interface through which a <code><a href=\"/reference/android/app/backup/BackupAgent.html\">BackupAgent</a></code> commits ;; information to the backup data set, via its <code><a href=\"/reference/android/app/backup/BackupAgent.html#onBackup(android.os.ParcelFileDescriptor, android.app.backup.BackupDataOutput, android.os.ParcelFileDescriptor)\">onBackup()</a></code> method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupHelper.html\">BackupHelper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the calling interface that <code><a href=\"/reference/android/app/backup/BackupAgentHelper.html\">BackupAgentHelper</a></code> uses ;; when dispatching backup and restore operations to the installed helpers. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/BackupManager.html\">BackupManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface through which an application interacts with the Android backup service to ;; request backup and restore operations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/BadPaddingException.html\">BadPaddingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a padding mechanism is expected for the ;; input data, but the input data does not have the proper padding bytes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/BadParcelableException.html\">BadParcelableException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The object you are calling has died, because its hosting process ;; no longer exists. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/Base64.html\">Base64</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utilities for encoding and decoding the Base64 representation of ;; binary data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/Base64DataException.html\">Base64DataException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This exception is thrown by <code><a href=\"/reference/android/util/Base64InputStream.html\">Base64InputStream</a></code> or <code><a href=\"/reference/android/util/Base64OutputStream.html\">Base64OutputStream</a></code> ;; when an error is detected in the data being decoded. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/Base64InputStream.html\">Base64InputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An InputStream that does Base64 decoding on the data read through ;; it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/Base64OutputStream.html\">Base64OutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An OutputStream that does Base64 encoding on the data written to ;; it, writing the resulting data to another OutputStream. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/BaseAdapter.html\">BaseAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Common base class of common implementation for an <code><a href=\"/reference/android/widget/Adapter.html\">Adapter</a></code> that can be ;; used in both <code><a href=\"/reference/android/widget/ListView.html\">ListView</a></code> (by implementing the specialized ;; <code><a href=\"/reference/android/widget/ListAdapter.html\">ListAdapter</a></code> interface} and <code><a href=\"/reference/android/widget/Spinner.html\">Spinner</a></code> (by implementing the ;; specialized <code><a href=\"/reference/android/widget/SpinnerAdapter.html\">SpinnerAdapter</a></code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/BaseColumns.html\">BaseColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/dalvik/system/BaseDexClassLoader.html\">BaseDexClassLoader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for common functionality between various dex-based ;; <code><a href=\"/reference/java/lang/ClassLoader.html\">ClassLoader</a></code> implementations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/BaseExpandableListAdapter.html\">BaseExpandableListAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for a <code><a href=\"/reference/android/widget/ExpandableListAdapter.html\">ExpandableListAdapter</a></code> used to provide data and Views ;; from some data to an expandable list view. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/BaseInputConnection.html\">BaseInputConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for implementors of the InputConnection interface, taking care ;; of most of the common behavior for providing a connection to an Editable. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/BaseKeyListener.html\">BaseKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for key listeners. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/BaseMovementMethod.html\">BaseMovementMethod</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base classes for movement methods. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/BaseObj.html\">BaseObj</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">BaseObj is the base class for all RenderScript objects owned by a RS context. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/junit/runner/BaseTestRunner.html\">BaseTestRunner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for all test runners. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicClientCookie.html\">BasicClientCookie</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP \"magic-cookie\" represents a piece of state information ;; that the HTTP agent and the target server can exchange to maintain ;; a session. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicClientCookie2.html\">BasicClientCookie2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP \"magic-cookie\" represents a piece of state information ;; that the HTTP agent and the target server can exchange to maintain ;; a session as specified by RFC2965. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicCommentHandler.html\">BasicCommentHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/BasicCookieStore.html\">BasicCookieStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of <code><a href=\"/reference/org/apache/http/client/CookieStore.html\">CookieStore</a></code> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/BasicCredentialsProvider.html\">BasicCredentialsProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of <code><a href=\"/reference/org/apache/http/client/CredentialsProvider.html\">CredentialsProvider</a></code> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicDomainHandler.html\">BasicDomainHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/BasicEofSensorWatcher.html\">BasicEofSensorWatcher</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of <code><a href=\"/reference/org/apache/http/conn/EofSensorWatcher.html\">EofSensorWatcher</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicExpiresHandler.html\">BasicExpiresHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHeader.html\">BasicHeader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents an HTTP header field. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHeaderElement.html\">BasicHeaderElement</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">One element of an HTTP header's value. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHeaderElementIterator.html\">BasicHeaderElementIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of a <code><a href=\"/reference/org/apache/http/HeaderElementIterator.html\">HeaderElementIterator</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHeaderIterator.html\">BasicHeaderIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of a <code><a href=\"/reference/org/apache/http/HeaderIterator.html\">HeaderIterator</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHeaderValueFormatter.html\">BasicHeaderValueFormatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation for formatting header value elements. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHeaderValueParser.html\">BasicHeaderValueParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation for parsing header values into elements. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/BasicHttpContext.html\">BasicHttpContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of the <code><a href=\"/reference/org/apache/http/protocol/HttpContext.html\">HttpContext</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/BasicHttpEntity.html\">BasicHttpEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A generic streamed entity being received on a connection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHttpEntityEnclosingRequest.html\">BasicHttpEntityEnclosingRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of a request with an entity that can be modified. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/BasicHttpParams.html\">BasicHttpParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a collection of HTTP protocol parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/BasicHttpProcessor.html\">BasicHttpProcessor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Keeps lists of interceptors for processing requests and responses. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHttpRequest.html\">BasicHttpRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of an HTTP request that can be modified. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicHttpResponse.html\">BasicHttpResponse</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of an HTTP response that can be modified. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicLineFormatter.html\">BasicLineFormatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for formatting elements of the HEAD section of an HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicLineParser.html\">BasicLineParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic parser for lines in the head section of an HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicListHeaderIterator.html\">BasicListHeaderIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of a <code><a href=\"/reference/org/apache/http/HeaderIterator.html\">HeaderIterator</a></code> based on a <code><a href=\"/reference/java/util/List.html\">List</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/BasicManagedEntity.html\">BasicManagedEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity that releases a <code><a href=\"/reference/org/apache/http/conn/ManagedClientConnection.html\">connection</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicMaxAgeHandler.html\">BasicMaxAgeHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicNameValuePair.html\">BasicNameValuePair</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A simple class encapsulating an attribute/value pair. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicPathHandler.html\">BasicPathHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/BasicPermission.html\">BasicPermission</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/tsccm/BasicPooledConnAdapter.html\">BasicPooledConnAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A connection wrapper and callback handler. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/tsccm/BasicPoolEntry.html\">BasicPoolEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of a connection pool entry. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/tsccm/BasicPoolEntryRef.html\">BasicPoolEntryRef</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A weak reference to a <code><a href=\"/reference/org/apache/http/impl/conn/tsccm/BasicPoolEntry.html\">BasicPoolEntry</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicRequestLine.html\">BasicRequestLine</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The first line of an <code><a href=\"/reference/org/apache/http/HttpRequest.html\">HttpRequest</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/BasicResponseHandler.html\">BasicResponseHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/org/apache/http/client/ResponseHandler.html\">ResponseHandler</a></code> that returns the response body as a String ;; for successful (2xx) responses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/routing/BasicRouteDirector.html\">BasicRouteDirector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of an <code><a href=\"/reference/org/apache/http/conn/routing/HttpRouteDirector.html\">HttpRouteDirector</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/auth/BasicScheme.html\">BasicScheme</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Basic authentication scheme as defined in RFC 2617. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/auth/BasicSchemeFactory.html\">BasicSchemeFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BasicSecureHandler.html\">BasicSecureHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicStatusLine.html\">BasicStatusLine</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a status line as returned from a HTTP server. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BasicTokenIterator.html\">BasicTokenIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of a <code><a href=\"/reference/org/apache/http/TokenIterator.html\">TokenIterator</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/BasicUserPrincipal.html\">BasicUserPrincipal</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic user principal used for HTTP authentication </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/BassBoost.html\">BassBoost</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Bass boost is an audio effect to boost or amplify low frequencies of the sound. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/BassBoost.OnParameterChangeListener.html\">BassBoost.OnParameterChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The OnParameterChangeListener interface defines a method called by the BassBoost when a ;; parameter value has changed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/BassBoost.Settings.html\">BassBoost.Settings</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Settings class regroups all bass boost parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/BatchUpdateException.html\">BatchUpdateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This exception is thrown if a problem occurs during a batch update operation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/BatteryManager.html\">BatteryManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The BatteryManager class contains strings and constants used for values ;; in the <code><a href=\"/reference/android/content/Intent.html#ACTION_BATTERY_CHANGED\">ACTION_BATTERY_CHANGED</a></code> Intent. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BestMatchSpec.html\">BestMatchSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">'Meta' cookie specification that selects a cookie policy depending ;; on the format of the cookie(s) </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BestMatchSpecFactory.html\">BestMatchSpecFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/Bidi.html\">Bidi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implements the <a href=\"http://unicode.org/reports/tr9/\">Unicode Bidirectional Algorithm</a>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/text/BidiFormatter.html\">BidiFormatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class for formatting text for display in a potentially opposite-directionality context ;; without garbling. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/BidiFormatter.html\">BidiFormatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class for formatting text for display in a potentially opposite-directionality context ;; without garbling. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/text/BidiFormatter.Builder.html\">BidiFormatter.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class for building a BidiFormatter with non-default options. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/BidiFormatter.Builder.html\">BidiFormatter.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class for building a BidiFormatter with non-default options. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/math/BigDecimal.html\">BigDecimal</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An immutable arbitrary-precision signed decimal. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/math/BigInteger.html\">BigInteger</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An immutable arbitrary-precision signed integer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Binder.html\">Binder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for a remotable object, the core part of a lightweight ;; remote procedure call mechanism defined by <code><a href=\"/reference/android/os/IBinder.html\">IBinder</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/BindException.html\">BindException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>BindException</code> is thrown when a process cannot bind a local ;; address/port, either because it is already bound or reserved by the OS. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Bitmap.html\">Bitmap</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Bitmap.CompressFormat.html\">Bitmap.CompressFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Specifies the known formats a bitmap can be compressed into ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Bitmap.Config.html\">Bitmap.Config</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Possible bitmap configurations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/BitmapDrawable.html\">BitmapDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Drawable that wraps a bitmap and can be tiled, stretched, or aligned. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/BitmapFactory.html\">BitmapFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Creates Bitmap objects from various sources, including files, streams, ;; and byte-arrays. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/BitmapFactory.Options.html\">BitmapFactory.Options</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-10\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/BitmapRegionDecoder.html\">BitmapRegionDecoder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">BitmapRegionDecoder can be used to decode a rectangle region from an image. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/BitmapShader.html\">BitmapShader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Shader used to draw a bitmap as a texture. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/BitSet.html\">BitSet</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>BitSet</code> class implements a ;; <a href=\"http://en.wikipedia.org/wiki/Bit_array\">bit array</a>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/Blob.html\">Blob</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Java interface representing the SQL <code>BLOB</code> type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/BlockingDeque.html\">BlockingDeque</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/util/Deque.html\">Deque</a></code> that additionally supports blocking operations that wait ;; for the deque to become non-empty when retrieving an element, and wait for ;; space to become available in the deque when storing an element. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/BlockingQueue.html\">BlockingQueue</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/util/Queue.html\">Queue</a></code> that additionally supports operations ;; that wait for the queue to become non-empty when retrieving an ;; element, and wait for space to become available in the queue when ;; storing an element. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothA2dp.html\">BluetoothA2dp</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides the public APIs to control the Bluetooth A2DP ;; profile. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothAdapter.html\">BluetoothAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents the local device Bluetooth adapter. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothAdapter.LeScanCallback.html\">BluetoothAdapter.LeScanCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface used to deliver LE scan results. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothAssignedNumbers.html\">BluetoothAssignedNumbers</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Bluetooth Assigned Numbers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothClass.html\">BluetoothClass</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a Bluetooth class, which describes general characteristics ;; and capabilities of a device. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothClass.Device.html\">BluetoothClass.Device</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines all device class constants. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothClass.Device.Major.html\">BluetoothClass.Device.Major</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines all major device class constants. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothClass.Service.html\">BluetoothClass.Service</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines all service class constants. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothDevice.html\">BluetoothDevice</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a remote Bluetooth device. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGatt.html\">BluetoothGatt</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public API for the Bluetooth GATT Profile. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGattCallback.html\">BluetoothGattCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This abstract class is used to implement <code><a href=\"/reference/android/bluetooth/BluetoothGatt.html\">BluetoothGatt</a></code> callbacks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGattCharacteristic.html\">BluetoothGattCharacteristic</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a Bluetooth GATT Characteristic ;; ;; <p>A GATT characteristic is a basic data element used to construct a GATT service, ;; <code><a href=\"/reference/android/bluetooth/BluetoothGattService.html\">BluetoothGattService</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGattDescriptor.html\">BluetoothGattDescriptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a Bluetooth GATT Descriptor ;; ;; <p> GATT Descriptors contain additional information and attributes of a GATT ;; characteristic, <code><a href=\"/reference/android/bluetooth/BluetoothGattCharacteristic.html\">BluetoothGattCharacteristic</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGattServer.html\">BluetoothGattServer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public API for the Bluetooth GATT Profile server role. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGattServerCallback.html\">BluetoothGattServerCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This abstract class is used to implement <code><a href=\"/reference/android/bluetooth/BluetoothGattServer.html\">BluetoothGattServer</a></code> callbacks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothGattService.html\">BluetoothGattService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a Bluetooth GATT Service ;; ;; <p> Gatt Service contains a collection of <code><a href=\"/reference/android/bluetooth/BluetoothGattCharacteristic.html\">BluetoothGattCharacteristic</a></code>, ;; as well as referenced services. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothHeadset.html\">BluetoothHeadset</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public API for controlling the Bluetooth Headset Service. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothHealth.html\">BluetoothHealth</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public API for Bluetooth Health Profile. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothHealthAppConfiguration.html\">BluetoothHealthAppConfiguration</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Bluetooth Health Application Configuration that is used in conjunction with ;; the <code><a href=\"/reference/android/bluetooth/BluetoothHealth.html\">BluetoothHealth</a></code> class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothHealthCallback.html\">BluetoothHealthCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This abstract class is used to implement <code><a href=\"/reference/android/bluetooth/BluetoothHealth.html\">BluetoothHealth</a></code> callbacks. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothManager.html\">BluetoothManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">High level manager used to obtain an instance of an <code><a href=\"/reference/android/bluetooth/BluetoothAdapter.html\">BluetoothAdapter</a></code> ;; and to conduct overall Bluetooth Management. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothProfile.html\">BluetoothProfile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public APIs for the Bluetooth Profiles. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothProfile.ServiceListener.html\">BluetoothProfile.ServiceListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for notifying BluetoothProfile IPC clients when they have ;; been connected or disconnected to the service. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothServerSocket.html\">BluetoothServerSocket</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A listening Bluetooth socket. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/bluetooth/BluetoothSocket.html\">BluetoothSocket</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A connected or connecting Bluetooth socket. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/BlurMaskFilter.html\">BlurMaskFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This takes a mask, and blurs its edge by the specified radius. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/BlurMaskFilter.Blur.html\">BlurMaskFilter.Blur</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Boolean.html\">Boolean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>boolean</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/BoringLayout.html\">BoringLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A BoringLayout is a very simple Layout implementation for text that ;; fits on a single line and is all left-to-right characters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/BoringLayout.Metrics.html\">BoringLayout.Metrics</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/BounceInterpolator.html\">BounceInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the change bounces at the end. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/BreakIterator.html\">BreakIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Locates boundaries in text. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/BroadcastReceiver.html\">BroadcastReceiver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for code that will receive intents sent by sendBroadcast(). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/BroadcastReceiver.PendingResult.html\">BroadcastReceiver.PendingResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">State for a result that is pending for a broadcast receiver. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/BrokenBarrierException.html\">BrokenBarrierException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Exception thrown when a thread tries to wait upon a barrier that is ;; in a broken state, or which enters the broken state while the thread ;; is waiting. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Browser.html\">Browser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Browser.BookmarkColumns.html\">Browser.BookmarkColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Column definitions for the mixed bookmark and history items available ;; at <code><a href=\"/reference/android/provider/Browser.html#BOOKMARKS_URI\">BOOKMARKS_URI</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Browser.SearchColumns.html\">Browser.SearchColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Column definitions for the search history table, available at <code><a href=\"/reference/android/provider/Browser.html#SEARCHES_URI\">SEARCHES_URI</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ssl/BrowserCompatHostnameVerifier.html\">BrowserCompatHostnameVerifier</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The HostnameVerifier that works the same way as Curl and Firefox. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BrowserCompatSpec.html\">BrowserCompatSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Cookie specification that strives to closely mimic (mis)behavior of ;; common web browser applications such as Microsoft Internet Explorer ;; and Mozilla FireFox. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/BrowserCompatSpecFactory.html\">BrowserCompatSpecFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/Buffer.html\">Buffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer is a list of elements of a specific primitive type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/BufferedHeader.html\">BufferedHeader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a raw HTTP header whose content is parsed 'on demand' ;; only when the header value needs to be consumed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/BufferedHttpEntity.html\">BufferedHttpEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A wrapping entity that buffers it content if necessary. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/BufferedInputStream.html\">BufferedInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code> and <em>buffers</em> the input. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/BufferedOutputStream.html\">BufferedOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/OutputStream.html\">OutputStream</a></code> and <em>buffers</em> the output. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/BufferedReader.html\">BufferedReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/Reader.html\">Reader</a></code> and <em>buffers</em> the input. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/BufferedWriter.html\">BufferedWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/Writer.html\">Writer</a></code> and <em>buffers</em> the output. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/BufferOverflowException.html\">BufferOverflowException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>BufferOverflowException</code> is thrown when elements are written ;; to a buffer but there is not enough remaining space in the buffer. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/BufferUnderflowException.html\">BufferUnderflowException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>BufferUnderflowException</code> is thrown when elements are read ;; from a buffer but there are not enough remaining elements in the buffer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Build.html\">Build</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about the current build, extracted from system properties. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Build.VERSION.html\">Build.VERSION</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Various version strings. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Build.VERSION_CODES.html\">Build.VERSION_CODES</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Enumeration of the currently known SDK version codes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/BulletSpan.html\">BulletSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Bundle.html\">Bundle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A mapping from String values to various Parcelable types. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Button.html\">Button</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a push-button widget. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Byte.html\">Byte</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>byte</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Byte2.html\">Byte2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript byte2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Byte3.html\">Byte3</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript byte3 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Byte4.html\">Byte4</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript byte4 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/util/ByteArrayBuffer.html\">ByteArrayBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A resizable byte array. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/ByteArrayEntity.html\">ByteArrayEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity whose content is retrieved from a byte array. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/ByteArrayInputStream.html\">ByteArrayInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code> for reading the contents of a byte array. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/ByteArrayOutputStream.html\">ByteArrayOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized <code><a href=\"/reference/java/io/OutputStream.html\">OutputStream</a></code> for class for writing content to an ;; (internal) byte array. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/ByteBuffer.html\">ByteBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer for bytes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/ByteChannel.html\">ByteChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A ByteChannel is both readable and writable. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/ByteOrder.html\">ByteOrder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines byte order constants. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_C\">C</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/CacheRequest.html\">CacheRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>CacheRequest</code> is a kind of channel for storing resource data in the ;; <code>ResponseCache</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/CacheResponse.html\">CacheResponse</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A response cache entry. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Calendar.html\">Calendar</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Calendar</code> is an abstract base class for converting between a ;; <code>Date</code> object and a set of integer fields such as ;; <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, ;; <code>HOUR</code>, and so on. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.html\">CalendarContract</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; The contract between the calendar provider and applications. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.Attendees.html\">CalendarContract.Attendees</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields and helpers for interacting with Attendees. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.AttendeesColumns.html\">CalendarContract.AttendeesColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns from the Attendees table that other tables join into themselves. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarAlerts.html\">CalendarContract.CalendarAlerts</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields and helpers for accessing calendar alerts information. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarAlertsColumns.html\">CalendarContract.CalendarAlertsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarCache.html\">CalendarContract.CalendarCache</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CalendarCache stores some settings for calendar including the current ;; time zone for the instances. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarCacheColumns.html\">CalendarContract.CalendarCacheColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarColumns.html\">CalendarContract.CalendarColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns specific to the Calendars Uri that other Uris can query. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarEntity.html\">CalendarContract.CalendarEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class that represents a Calendar Entity. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.Calendars.html\">CalendarContract.Calendars</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants and helpers for the Calendars table, which contains details for ;; individual calendars. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.CalendarSyncColumns.html\">CalendarContract.CalendarSyncColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Generic columns for use by sync adapters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.Colors.html\">CalendarContract.Colors</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields for accessing colors available for a given account. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.ColorsColumns.html\">CalendarContract.ColorsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.EventDays.html\">CalendarContract.EventDays</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields and helpers for querying for a list of days that contain events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.EventDaysColumns.html\">CalendarContract.EventDaysColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.Events.html\">CalendarContract.Events</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants and helpers for the Events table, which contains details for ;; individual events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.EventsColumns.html\">CalendarContract.EventsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns from the Events table that other tables join into themselves. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.EventsEntity.html\">CalendarContract.EventsEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class that represents an Event Entity. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.ExtendedProperties.html\">CalendarContract.ExtendedProperties</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields for accessing the Extended Properties. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.ExtendedPropertiesColumns.html\">CalendarContract.ExtendedPropertiesColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.Instances.html\">CalendarContract.Instances</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields and helpers for interacting with Instances. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.Reminders.html\">CalendarContract.Reminders</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields and helpers for accessing reminders for an event. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.RemindersColumns.html\">CalendarContract.RemindersColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.SyncColumns.html\">CalendarContract.SyncColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns for Sync information used by Calendars and Events tables. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CalendarContract.SyncState.html\">CalendarContract.SyncState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A table provided for sync adapters to use for storing private sync state data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CalendarView.html\">CalendarView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is a calendar widget for displaying and selecting dates. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CalendarView.OnDateChangeListener.html\">CalendarView.OnDateChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The callback used to indicate the user changes the date. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/Callable.html\">Callable</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A task that returns a result and may throw an exception. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/CallableStatement.html\">CallableStatement</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface used to call <i>Stored Procedures</i>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/auth/callback/Callback.html\">Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an empty base interface for all <code>Callback</code>s used during ;; authentication. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/auth/callback/CallbackHandler.html\">CallbackHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Needs to be implemented by classes that want to handle authentication ;; <code><a href=\"/reference/javax/security/auth/callback/Callback.html\">Callback</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CallLog.html\">CallLog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The CallLog provider contains information about placed and received calls. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/CallLog.Calls.html\">CallLog.Calls</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains the recent calls. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/CamcorderProfile.html\">CamcorderProfile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Retrieves the ;; predefined camcorder profile settings for camcorder applications. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Camera.html\">Camera</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A camera instance can be used to compute 3D transformations and ;; generate a matrix that can be applied, for instance, on a ;; <code><a href=\"/reference/android/graphics/Canvas.html\">Canvas</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.html\">Camera</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Camera class is used to set image capture settings, start/stop preview, ;; snap pictures, and retrieve frames for encoding for video. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.Area.html\">Camera.Area</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>The Area class is used for choosing specific metering and focus areas for ;; the camera to use when calculating auto-exposure, auto-white balance, and ;; auto-focus. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.AutoFocusCallback.html\">Camera.AutoFocusCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface used to notify on completion of camera auto focus. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.AutoFocusMoveCallback.html\">Camera.AutoFocusMoveCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface used to notify on auto focus start and stop. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.CameraInfo.html\">Camera.CameraInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a camera ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.ErrorCallback.html\">Camera.ErrorCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for camera error notification. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.Face.html\">Camera.Face</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a face identified through camera face detection. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.FaceDetectionListener.html\">Camera.FaceDetectionListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for face detected in the preview frame. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.OnZoomChangeListener.html\">Camera.OnZoomChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for zoom changes during a smooth zoom operation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.Parameters.html\">Camera.Parameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Camera service settings. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.PictureCallback.html\">Camera.PictureCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface used to supply image data from a photo capture. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.PreviewCallback.html\">Camera.PreviewCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface used to deliver copies of preview frames as ;; they are displayed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.ShutterCallback.html\">Camera.ShutterCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface used to signal the moment of actual image capture. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/Camera.Size.html\">Camera.Size</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Image size (width and height dimensions). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/CameraProfile.html\">CameraProfile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The CameraProfile class is used to retrieve the pre-defined still image ;; capture (jpeg) quality levels (0-100) used for low, medium, and high ;; quality settings in the Camera application. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/CancellationException.html\">CancellationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Exception indicating that the result of a value-producing task, ;; such as a <code><a href=\"/reference/java/util/concurrent/FutureTask.html\">FutureTask</a></code>, cannot be retrieved because the task ;; was cancelled. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/CancellationSignal.html\">CancellationSignal</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides the ability to cancel an operation in progress. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/CancellationSignal.OnCancelListener.html\">CancellationSignal.OnCancelListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens for cancellation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/CancelledKeyException.html\">CancelledKeyException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>CancelledKeyException</code> is thrown when an invalid selection key is ;; used. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Canvas.html\">Canvas</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Canvas class holds the \"draw\" calls. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Canvas.EdgeType.html\">Canvas.EdgeType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Canvas.VertexMode.html\">Canvas.VertexMode</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/CDATASection.html\">CDATASection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CDATA sections are used to escape blocks of text containing characters that ;; would otherwise be regarded as markup. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/cdma/CdmaCellLocation.html\">CdmaCellLocation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents the cell location on a CDMA phone. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellIdentityCdma.html\">CellIdentityCdma</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CellIdentity is to represent a unique CDMA cell ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellIdentityGsm.html\">CellIdentityGsm</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CellIdentity to represent a unique GSM cell ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellIdentityLte.html\">CellIdentityLte</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CellIdentity is to represent a unique LTE cell ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellIdentityWcdma.html\">CellIdentityWcdma</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CellIdentity to represent a unique UMTS cell ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellInfo.html\">CellInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Immutable cell information from a point in time. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellInfoCdma.html\">CellInfoCdma</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Immutable cell information from a point in time. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellInfoGsm.html\">CellInfoGsm</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Immutable cell information from a point in time. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellInfoLte.html\">CellInfoLte</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Immutable cell information from a point in time. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellInfoWcdma.html\">CellInfoWcdma</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Immutable cell information from a point in time. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellLocation.html\">CellLocation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract class that represents the location of the device. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellSignalStrength.html\">CellSignalStrength</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract base class for cell phone signal strength related information. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellSignalStrengthCdma.html\">CellSignalStrengthCdma</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">LTE signal strength related information. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellSignalStrengthGsm.html\">CellSignalStrengthGsm</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">GSM signal strength related information. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellSignalStrengthLte.html\">CellSignalStrengthLte</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">LTE signal strength related information. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/CellSignalStrengthWcdma.html\">CellSignalStrengthWcdma</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wcdma signal strength related information. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/Certificate.html\">Certificate</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 1. ;; Replaced by behavior in <code><a href=\"/reference/java/security/cert/package-summary.html\">java.security.cert</a></code></em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/Certificate.html\">Certificate</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract class to represent identity certificates. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/cert/Certificate.html\">Certificate</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract class to represent identity certificates. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/Certificate.CertificateRep.html\">Certificate.CertificateRep</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The alternate <code>Serializable</code> class to be used for serialization and ;; deserialization of <code>Certificate</code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateEncodingException.html\">CertificateEncodingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when an error occurs while a <code>Certificate</code> ;; is being encoded. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/cert/CertificateEncodingException.html\">CertificateEncodingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when an error occurs while a <code>Certificate</code> ;; is being encoded. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateException.html\">CertificateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base class for all <code>Certificate</code> related exceptions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/cert/CertificateException.html\">CertificateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base class for all <code>Certificate</code> related exceptions. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateExpiredException.html\">CertificateExpiredException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>Certificate</code> has expired. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/cert/CertificateExpiredException.html\">CertificateExpiredException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>Certificate</code> has expired. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateFactory.html\">CertificateFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements the functionality of a certificate factory algorithm, ;; relying on parsing a stream of bytes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateFactorySpi.html\">CertificateFactorySpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class defines the <i>Service Provider Interface</i> (<b>SPI</b>) for the ;; <code>CertificateFactory</code> class. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateNotYetValidException.html\">CertificateNotYetValidException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>Certificate</code> is not yet valid or ;; will not yet be valid on a specified date. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/cert/CertificateNotYetValidException.html\">CertificateNotYetValidException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>Certificate</code> is not yet valid. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertificateParsingException.html\">CertificateParsingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>Certificate</code> can not be parsed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/cert/CertificateParsingException.html\">CertificateParsingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>Certificate</code> can not be parsed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPath.html\">CertPath</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An immutable certificate path that can be validated. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPath.CertPathRep.html\">CertPath.CertPathRep</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The alternate <code>Serializable</code> class to be used for serialization and ;; deserialization on <code>CertPath</code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathBuilder.html\">CertPathBuilder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements the functionality of a builder for an unverified ;; <i>Certification Path</i>s from a specified certificate to a trust anchor. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathBuilderException.html\">CertPathBuilderException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a <code>CertPathBuilder</code> method fails. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathBuilderResult.html\">CertPathBuilderResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for results generated by ;; <code><a href=\"/reference/java/security/cert/CertPathBuilder.html#build(java.security.cert.CertPathParameters)\">build(CertPathParameters)</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathBuilderSpi.html\">CertPathBuilderSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (<b>SPI</b>) for the <code>CertPathBuilder</code> class to be implemented by security providers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathParameters.html\">CertPathParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface specification for certification path algorithm parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/CertPathTrustManagerParameters.html\">CertPathTrustManagerParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Certification path parameters to provide to certification path ;; based <code><a href=\"/reference/javax/net/ssl/TrustManager.html\">TrustManager</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathValidator.html\">CertPathValidator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides the functionality for validating certification paths ;; (certificate chains) establishing a trust chain from a certificate to a trust ;; anchor. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathValidatorException.html\">CertPathValidatorException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when a certification path (or certificate chain) ;; cannot be validated. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathValidatorResult.html\">CertPathValidatorResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface specification for certification path validation results. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertPathValidatorSpi.html\">CertPathValidatorSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (<b>SPI</b>) for the <code>CertPathValidator</code> class to be implemented by security providers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertSelector.html\">CertSelector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface specification to determine whether a <code>Certificate</code> meets some criteria. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertStore.html\">CertStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides the functionality to retrieve <code>Certificate</code>s and ;; <code>CRL</code>s from a read-only repository. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertStoreException.html\">CertStoreException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when an access to a <code>CertStore</code> fails. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertStoreParameters.html\">CertStoreParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The marker interface specifying the parameters used to initialize a <code>CertStore</code> instance. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CertStoreSpi.html\">CertStoreSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (<b>SPI</b>) definition for the <code>CertStore</code> class to be implemented by security providers. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/Channel.html\">Channel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A channel is a conduit to I/O services covering such items as files, sockets, ;; hardware devices, I/O ports or some software component. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/Channels.html\">Channels</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides several utilities to get I/O streams from channels. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Character.html\">Character</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>char</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Character.Subset.html\">Character.Subset</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Character.UnicodeBlock.html\">Character.UnicodeBlock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a block of Unicode characters, as defined by the Unicode 4.0.1 ;; specification. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/CharacterCodingException.html\">CharacterCodingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>CharacterCodingException</code> is thrown when an encoding or decoding ;; error occurs. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/CharacterData.html\">CharacterData</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>CharacterData</code> interface extends Node with a set of ;; attributes and methods for accessing character data in the DOM. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/CharacterIterator.html\">CharacterIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for the bidirectional iteration over a group of characters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/CharacterPickerDialog.html\">CharacterPickerDialog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Dialog for choosing accented characters related to a base character. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/CharacterStyle.html\">CharacterStyle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The classes that affect character-level text formatting extend this ;; class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CharArrayBuffer.html\">CharArrayBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is used for <code><a href=\"/reference/android/database/Cursor.html#copyStringToBuffer(int, android.database.CharArrayBuffer)\">copyStringToBuffer(int, CharArrayBuffer)</a></code> ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/util/CharArrayBuffer.html\">CharArrayBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A resizable char array. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/CharArrayReader.html\">CharArrayReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized <code><a href=\"/reference/java/io/Reader.html\">Reader</a></code> for reading the contents of a char array. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/CharArrayWriter.html\">CharArrayWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized <code><a href=\"/reference/java/io/Writer.html\">Writer</a></code> for class for writing content to an (internal) ;; char array. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/CharBuffer.html\">CharBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer of chars. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/CharConversionException.html\">CharConversionException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The top level class for character conversion exceptions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/CharSequence.html\">CharSequence</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface represents an ordered set of characters and defines the ;; methods to probe them. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/Charset.html\">Charset</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A charset is a named mapping between Unicode characters and byte sequences. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/CharsetDecoder.html\">CharsetDecoder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A converter that can convert a byte sequence from a charset into a 16-bit ;; Unicode character sequence. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/CharsetEncoder.html\">CharsetEncoder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Transforms a sequence of 16-bit Java characters to a byte sequence in some encoding. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/spi/CharsetProvider.html\">CharsetProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The service provider class for character sets. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Checkable.html\">Checkable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an extension for views that make them checkable. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CheckBox.html\">CheckBox</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A checkbox is a specific type of two-states button that can be either ;; checked or unchecked. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/preference/CheckBoxPreference.html\">CheckBoxPreference</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/android/preference/Preference.html\">Preference</a></code> that provides checkbox widget ;; functionality. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/CheckedInputStream.html\">CheckedInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>CheckedInputStream</code> class is used to maintain a checksum at the ;; same time as the data, on which the checksum is computed, is read from a ;; stream. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/CheckedOutputStream.html\">CheckedOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>CheckedOutputStream</code> class is used to maintain a running checksum ;; of all data written to a stream. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CheckedTextView.html\">CheckedTextView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An extension to TextView that supports the <code><a href=\"/reference/android/widget/Checkable.html\">Checkable</a></code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/Checksum.html\">Checksum</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface common to checksum classes such as <code><a href=\"/reference/java/util/zip/Adler32.html\">Adler32</a></code> and <code><a href=\"/reference/java/util/zip/CRC32.html\">CRC32</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/ChoiceFormat.html\">ChoiceFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Returns a fixed string based on a numeric value. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/Choreographer.html\">Choreographer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Coordinates the timing of animations, input and drawing. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/Choreographer.FrameCallback.html\">Choreographer.FrameCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implement this interface to receive a callback when a new display frame is ;; being rendered. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Chronometer.html\">Chronometer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class that implements a simple timer. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Chronometer.OnChronometerTickListener.html\">Chronometer.OnChronometerTickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A callback that notifies when the chronometer has incremented on its own. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/ChunkedInputStream.html\">ChunkedInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implements chunked transfer coding. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/ChunkedOutputStream.html\">ChunkedOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implements chunked transfer coding. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/Cipher.html\">Cipher</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides access to implementations of cryptographic ciphers for ;; encryption and decryption. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/CipherInputStream.html\">CipherInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class wraps an <code>InputStream</code> and a cipher so that <code>read()</code> ;; methods return data that are read from the underlying <code>InputStream</code> and ;; processed by the cipher. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/CipherOutputStream.html\">CipherOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class wraps an output stream and a cipher so that <code>write</code> methods ;; send the data through the cipher before writing them to the underlying output ;; stream. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/CipherSpi.html\">CipherSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class defines the <i>Service Provider Interface</i> (<b>SPI</b>) for ;; cryptographic ciphers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/CircularRedirectException.html\">CircularRedirectException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals a circular redirect </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Class.html\">Class</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The in-memory representation of a Java class. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ClassCastException.html\">ClassCastException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program attempts to cast a an object to a type with which it is ;; not compatible. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ClassCircularityError.html\">ClassCircularityError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when the VM notices that an attempt is made to load a ;; class which would directly or indirectly inherit from one of its subclasses. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ClassFormatError.html\">ClassFormatError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown by a class loader when a class file has an illegal format or if the ;; data that it contains can not be interpreted as a class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ClassLoader.html\">ClassLoader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Loads classes and resources from a repository. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ClassNotFoundException.html\">ClassNotFoundException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a class loader is unable to find a class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/ClickableSpan.html\">ClickableSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">If an object of this type is attached to the text of a TextView ;; with a movement method of LinkMovementMethod, the affected spans of ;; text can be selected. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ClientConnectionManager.html\">ClientConnectionManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Management interface for <code><a href=\"/reference/org/apache/http/conn/ManagedClientConnection.html\">client connections</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ClientConnectionManagerFactory.html\">ClientConnectionManagerFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A factory for creating new <code><a href=\"/reference/org/apache/http/conn/ClientConnectionManager.html\">ClientConnectionManager</a></code> instances. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ClientConnectionOperator.html\">ClientConnectionOperator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for opening <code><a href=\"/reference/org/apache/http/conn/OperatedClientConnection.html\">connections</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ClientConnectionRequest.html\">ClientConnectionRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates a request for a <code><a href=\"/reference/org/apache/http/conn/ManagedClientConnection.html\">ManagedClientConnection</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/protocol/ClientContext.html\">ClientContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code><a href=\"/reference/org/apache/http/protocol/HttpContext.html\">Context</a></code> ;; attribute names for client. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/protocol/ClientContextConfigurer.html\">ClientContextConfigurer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/ClientCookie.html\">ClientCookie</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">ClientCookie extends the standard <code><a href=\"/reference/org/apache/http/cookie/Cookie.html\">Cookie</a></code> interface with ;; additional client specific functionality such ability to retrieve ;; original cookie attributes exactly as they were specified by the ;; origin server. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/ClientInfoStatus.html\">ClientInfoStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An enumeration to describe the reason why a property cannot be set by calling ;; Connection.setClientInfo. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/params/ClientParamBean.html\">ClientParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/ClientParamsStack.html\">ClientParamsStack</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a stack of parameter collections. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/params/ClientPNames.html\">ClientPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parameter names for the HttpClient module. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/ClientProtocolException.html\">ClientProtocolException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals an error in the HTTP protocol. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ClipboardManager.html\">ClipboardManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to the clipboard service, for placing and retrieving text in ;; the global clipboard. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/ClipboardManager.html\">ClipboardManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 11. ;; Old text-only interface to the clipboard. See ;; <code><a href=\"/reference/android/content/ClipboardManager.html\">ClipboardManager</a></code> for the modern API. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ClipboardManager.OnPrimaryClipChangedListener.html\">ClipboardManager.OnPrimaryClipChangedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a listener callback that is invoked when the primary clip on the clipboard changes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ClipData.html\">ClipData</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Representation of a clipped data on the clipboard. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ClipData.Item.html\">ClipData.Item</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Description of a single item in a ClippedData. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ClipDescription.html\">ClipDescription</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Meta-data describing the contents of a <code><a href=\"/reference/android/content/ClipData.html\">ClipData</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/ClipDrawable.html\">ClipDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Drawable that clips another Drawable based on this Drawable's current ;; level value. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/Clob.html\">Clob</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Java interface mapping for the SQL CLOB type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Cloneable.html\">Cloneable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This (empty) interface must be implemented by all classes that wish to ;; support cloning. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/CloneNotSupportedException.html\">CloneNotSupportedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program attempts to clone an object which does not support the ;; <code><a href=\"/reference/java/lang/Cloneable.html\">Cloneable</a></code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/utils/CloneUtils.html\">CloneUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A collection of utilities to workaround limitations of Java clone framework. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/Closeable.html\">Closeable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>AutoCloseable</code> whose close method may throw an <code><a href=\"/reference/java/io/IOException.html\">IOException</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/ClosedByInterruptException.html\">ClosedByInterruptException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>ClosedByInterruptException</code> is thrown when a thread is interrupted ;; in a blocking I/O operation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/ClosedChannelException.html\">ClosedChannelException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>ClosedChannelException</code> is thrown when a channel is closed for the ;; type of operation attempted. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/ClosedSelectorException.html\">ClosedSelectorException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>ClosedSelectorException</code> is thrown when a <code><a href=\"/reference/java/nio/channels/Selector.html\">selector</a></code> ;; is closed and an I/O operation is attempted. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/CoderMalfunctionError.html\">CoderMalfunctionError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>CoderMalfunctionError</code> is thrown when the encoder/decoder is ;; malfunctioning. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/CoderResult.html\">CoderResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used to indicate the result of encoding/decoding. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/CodeSigner.html\">CodeSigner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>CodeSigner</code> represents a signer of code. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/CodeSource.html\">CodeSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/CodingErrorAction.html\">CodingErrorAction</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used to indicate what kind of actions to take in case of encoding/decoding ;; errors. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/view/CollapsibleActionView.html\">CollapsibleActionView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">When a <code><a href=\"/reference/android/view/View.html\">View</a></code> implements this interface it will receive callbacks when expanded or ;; collapsed as an action view alongside the optional, app-specified callbacks to <code><a href=\"/reference/android/support/v4/view/MenuItemCompat.OnActionExpandListener.html\">MenuItemCompat.OnActionExpandListener</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/CollapsibleActionView.html\">CollapsibleActionView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">When a <code><a href=\"/reference/android/view/View.html\">View</a></code> implements this interface it will receive callbacks ;; when expanded or collapsed as an action view alongside the optional, ;; app-specified callbacks to <code><a href=\"/reference/android/view/MenuItem.OnActionExpandListener.html\">MenuItem.OnActionExpandListener</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/CollationElementIterator.html\">CollationElementIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Created by a <code>RuleBasedCollator</code> to iterate through a string. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/CollationKey.html\">CollationKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a string under the rules of a specific <code>Collator</code> object. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/Collator.html\">Collator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Performs locale-sensitive string comparison. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Collection.html\">Collection</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Collection</code> is the root of the collection hierarchy. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CollectionCertStoreParameters.html\">CollectionCertStoreParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters to initialize a <i>Collection</i> type <code>CertStore</code> instance. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Collections.html\">Collections</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Collections</code> contains static methods which operate on ;; <code>Collection</code> classes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Color.html\">Color</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Color class defines methods for creating and converting color ints. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/ColorDrawable.html\">ColorDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized Drawable that fills the Canvas with a specified color. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/ColorFilter.html\">ColorFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/ColorMatrix.html\">ColorMatrix</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">5x4 matrix for transforming the color+alpha components of a Bitmap. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/ColorMatrixColorFilter.html\">ColorMatrixColorFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/ColorStateList.html\">ColorStateList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Lets you map <code><a href=\"/reference/android/view/View.html\">View</a></code> state sets to colors. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/Comment.html\">Comment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface inherits from <code>CharacterData</code> and represents the ;; content of a comment, i.e., all the characters between the starting ' ;; <code><!--</code>' and ending '<code>--></code>'. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/sql/CommonDataSource.html\">CommonDataSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface that defines the methods which are common between DataSource, ;; XADataSource and ConnectionPoolDataSource. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Comparable.html\">Comparable</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface should be implemented by all classes that wish to define a ;; <em>natural order</em> of their instances. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Comparator.html\">Comparator</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>Comparator</code> is used to compare two objects to determine their ordering with ;; respect to each other. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/ComparisonFailure.html\">ComparisonFailure</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 16. ;; use junit.framework.ComparisonFailure ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/junit/framework/ComparisonFailure.html\">ComparisonFailure</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when an assert equals for Strings failed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Compiler.html\">Compiler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Does nothing on Android. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/CompletionInfo.html\">CompletionInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a single text completion that an editor has reported to ;; an input method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/CompletionService.html\">CompletionService</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A service that decouples the production of new asynchronous tasks ;; from the consumption of the results of completed tasks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ComponentCallbacks.html\">ComponentCallbacks</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The set of callback APIs that are common to all application components ;; (<code><a href=\"/reference/android/app/Activity.html\">Activity</a></code>, <code><a href=\"/reference/android/app/Service.html\">Service</a></code>, ;; <code><a href=\"/reference/android/content/ContentProvider.html\">ContentProvider</a></code>, and <code><a href=\"/reference/android/app/Application.html\">Application</a></code>). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ComponentCallbacks2.html\">ComponentCallbacks2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extended <code><a href=\"/reference/android/content/ComponentCallbacks.html\">ComponentCallbacks</a></code> interface with a new callback for ;; finer-grained memory management. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/ComponentInfo.html\">ComponentInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class containing information common to all application components ;; (<code><a href=\"/reference/android/content/pm/ActivityInfo.html\">ActivityInfo</a></code>, <code><a href=\"/reference/android/content/pm/ServiceInfo.html\">ServiceInfo</a></code>). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ComponentName.html\">ComponentName</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Identifier for a specific application component ;; (<code><a href=\"/reference/android/app/Activity.html\">Activity</a></code>, <code><a href=\"/reference/android/app/Service.html\">Service</a></code>, ;; <code><a href=\"/reference/android/content/BroadcastReceiver.html\">BroadcastReceiver</a></code>, or ;; <code><a href=\"/reference/android/content/ContentProvider.html\">ContentProvider</a></code>) that is available. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/ComposePathEffect.html\">ComposePathEffect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/ComposeShader.html\">ComposeShader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A subclass of shader that returns the coposition of two other shaders, combined by ;; an <code><a href=\"/reference/android/graphics/Xfermode.html\">Xfermode</a></code> subclass. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CompoundButton.html\">CompoundButton</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A button with two states, checked and unchecked. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CompoundButton.OnCheckedChangeListener.html\">CompoundButton.OnCheckedChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when the checked state ;; of a compound button changed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ConcurrentHashMap.html\">ConcurrentHashMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A hash table supporting full concurrency of retrievals and ;; adjustable expected concurrency for updates. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ConcurrentLinkedQueue.html\">ConcurrentLinkedQueue</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An unbounded thread-safe <code><a href=\"/reference/java/util/Queue.html\">queue</a></code> based on linked nodes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ConcurrentMap.html\">ConcurrentMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/util/Map.html\">Map</a></code> providing additional atomic ;; <tt>putIfAbsent</tt>, <tt>remove</tt>, and <tt>replace</tt> methods. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/ConcurrentModificationException.html\">ConcurrentModificationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>ConcurrentModificationException</code> is thrown when a Collection is ;; modified and an existing iterator on the Collection is used to modify the ;; Collection as well. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ConcurrentNavigableMap.html\">ConcurrentNavigableMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/util/concurrent/ConcurrentMap.html\">ConcurrentMap</a></code> supporting <code><a href=\"/reference/java/util/NavigableMap.html\">NavigableMap</a></code> operations, ;; and recursively so for its navigable sub-maps. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ConcurrentSkipListMap.html\">ConcurrentSkipListMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A scalable concurrent <code><a href=\"/reference/java/util/concurrent/ConcurrentNavigableMap.html\">ConcurrentNavigableMap</a></code> implementation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ConcurrentSkipListSet.html\">ConcurrentSkipListSet</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A scalable concurrent <code><a href=\"/reference/java/util/NavigableSet.html\">NavigableSet</a></code> implementation based on ;; a <code><a href=\"/reference/java/util/concurrent/ConcurrentSkipListMap.html\">ConcurrentSkipListMap</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/Condition.html\">Condition</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Condition</code> factors out the <code>Object</code> monitor ;; methods (<code><a href=\"/reference/java/lang/Object.html#wait()\">wait</a></code>, <code><a href=\"/reference/java/lang/Object.html#notify()\">notify</a></code> ;; and <code><a href=\"/reference/java/lang/Object.html#notifyAll()\">notifyAll</a></code>) into distinct objects to ;; give the effect of having multiple wait-sets per object, by ;; combining them with the use of arbitrary <code><a href=\"/reference/java/util/concurrent/locks/Lock.html\">Lock</a></code> implementations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/ConditionVariable.html\">ConditionVariable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class that implements the condition variable locking paradigm. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/Config.html\">Config</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 14. ;; This class is not useful, it just returns the same value for ;; all constants, and has always done this. Do not use it. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/res/Configuration.html\">Configuration</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class describes all device configuration information that can ;; impact the resources the application retrieves. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/ConfigurationInfo.html\">ConfigurationInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about hardware configuration preferences ;; declared by an application. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnConnectionParamBean.html\">ConnConnectionParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Allows for setting parameters relating to connections on ;; <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnConnectionPNames.html\">ConnConnectionPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parameter names for connections in HttpConn. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/ConnectException.html\">ConnectException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>ConnectException</code> is thrown if a connection cannot be established to ;; a remote host on a specific port. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/Connection.html\">Connection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A connection represents a link from a Java application to a database. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/ConnectionClosedException.html\">ConnectionClosedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that a connection has been closed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/sql/ConnectionEvent.html\">ConnectionEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Sent when specific events happen on a <code><a href=\"/reference/javax/sql/PooledConnection.html\">PooledConnection</a></code> object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/sql/ConnectionEventListener.html\">ConnectionEventListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface used to receive events generated by a <code><a href=\"/reference/javax/sql/PooledConnection.html\">PooledConnection</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ConnectionKeepAliveStrategy.html\">ConnectionKeepAliveStrategy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for deciding how long a connection can remain ;; idle before being reused. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/ConnectionPendingException.html\">ConnectionPendingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>ConnectionPendingException</code> is thrown when an attempt is made to ;; connect a <code><a href=\"/reference/java/nio/channels/SocketChannel.html\">SocketChannel</a></code> that has a non-blocking connection already ;; underway. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/sql/ConnectionPoolDataSource.html\">ConnectionPoolDataSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for the creation of <code>ConnectionPoolDataSource</code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ConnectionPoolTimeoutException.html\">ConnectionPoolTimeoutException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A timeout while waiting for an available connection ;; from a connection manager. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ConnectionReleaseTrigger.html\">ConnectionReleaseTrigger</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for releasing a connection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/ConnectionReuseStrategy.html\">ConnectionReuseStrategy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for deciding whether a connection should be kept alive. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/ConnectivityManager.html\">ConnectivityManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class that answers queries about the state of network connectivity. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/net/ConnectivityManagerCompat.html\">ConnectivityManagerCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/net/ConnectivityManager.html\">ConnectivityManager</a></code> introduced after ;; API level 16 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ConnectTimeoutException.html\">ConnectTimeoutException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A timeout while connecting to an HTTP server or waiting for an ;; available connection from an HttpConnectionManager. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnManagerParamBean.html\">ConnManagerParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Allows for setting parameters relating to connection managers on ;; <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnManagerParams.html\">ConnManagerParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a collection of HTTP protocol parameters applicable ;; to client-side ;; <code><a href=\"/reference/org/apache/http/conn/ClientConnectionManager.html\">connection managers</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnManagerPNames.html\">ConnManagerPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parameter names for connection managers in HttpConn. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnPerRoute.html\">ConnPerRoute</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface is intended for looking up maximum number of connections ;; allowed for for a given route. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnPerRouteBean.html\">ConnPerRouteBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class maintains a map of HTTP routes to maximum number of connections allowed ;; for those routes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/tsccm/ConnPoolByRoute.html\">ConnPoolByRoute</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A connection pool that maintains connections by route. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnRouteParamBean.html\">ConnRouteParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Allows for setting parameters relating to connection routes on ;; <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnRouteParams.html\">ConnRouteParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An adaptor for accessing route related parameters in <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/params/ConnRoutePNames.html\">ConnRoutePNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parameter names for routing in HttpConn. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/Console.html\">Console</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to the console, if available. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/ConsoleHandler.html\">ConsoleHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A handler that writes log messages to the standard output stream ;; <code>System.err</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/ConsoleMessage.html\">ConsoleMessage</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public class representing a JavaScript console message from WebCore. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/ConsoleMessage.MessageLevel.html\">ConsoleMessage.MessageLevel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/Constructor.html\">Constructor</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a constructor. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.html\">Contacts</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; The APIs have been superseded by <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code>. The newer APIs allow ;; access multiple accounts and support aggregation of similar contacts. These APIs continue to ;; work but will only return data for the first Google account created, which matches the original ;; behavior. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.ContactMethods.html\">Contacts.ContactMethods</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.ContactMethodsColumns.html\">Contacts.ContactMethodsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Extensions.html\">Contacts.Extensions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.ExtensionsColumns.html\">Contacts.ExtensionsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.GroupMembership.html\">Contacts.GroupMembership</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Groups.html\">Contacts.Groups</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.GroupsColumns.html\">Contacts.GroupsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Intents.html\">Contacts.Intents</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Intents.Insert.html\">Contacts.Intents.Insert</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Intents.UI.html\">Contacts.Intents.UI</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.OrganizationColumns.html\">Contacts.OrganizationColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Organizations.html\">Contacts.Organizations</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.People.html\">Contacts.People</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.People.ContactMethods.html\">Contacts.People.ContactMethods</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.People.Extensions.html\">Contacts.People.Extensions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.People.Phones.html\">Contacts.People.Phones</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.PeopleColumns.html\">Contacts.PeopleColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Phones.html\">Contacts.Phones</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.PhonesColumns.html\">Contacts.PhonesColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Photos.html\">Contacts.Photos</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.PhotosColumns.html\">Contacts.PhotosColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.PresenceColumns.html\">Contacts.PresenceColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.Settings.html\">Contacts.Settings</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/Contacts.SettingsColumns.html\">Contacts.SettingsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 5. ;; see <code><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.html\">ContactsContract</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; The contract between the contacts provider and applications. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.AggregationExceptions.html\">ContactsContract.AggregationExceptions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Constants for the contact aggregation exceptions table, which contains ;; aggregation rules overriding those used by automatic aggregation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.BaseSyncColumns.html\">ContactsContract.BaseSyncColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Generic columns for use by sync adapters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.html\">ContactsContract.CommonDataKinds</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Container for definitions of common data types stored in the <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> ;; table. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.BaseTypes.html\">ContactsContract.CommonDataKinds.BaseTypes</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base types that all \"Typed\" data kinds support. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.CommonColumns.html\">ContactsContract.CommonDataKinds.CommonColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns common across the specific types. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html\">ContactsContract.CommonDataKinds.Contactables</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A special class of data items, used to refer to types of data that can be used to attempt ;; to start communicating with a person (<code><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Phone.html\">ContactsContract.CommonDataKinds.Phone</a></code> and <code><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Email.html\">ContactsContract.CommonDataKinds.Email</a></code>). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Email.html\">ContactsContract.CommonDataKinds.Email</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing an email address. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Event.html\">ContactsContract.CommonDataKinds.Event</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing an event. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html\">ContactsContract.CommonDataKinds.GroupMembership</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Group Membership. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Identity.html\">ContactsContract.CommonDataKinds.Identity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A data kind representing an Identity related to the contact. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Im.html\">ContactsContract.CommonDataKinds.Im</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing an IM address ;; </p> ;; <p> ;; You can use all columns defined for <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> as ;; well as the following aliases. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html\">ContactsContract.CommonDataKinds.Nickname</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>A data kind representing the contact's nickname. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Note.html\">ContactsContract.CommonDataKinds.Note</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Notes about the contact. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Organization.html\">ContactsContract.CommonDataKinds.Organization</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing an organization. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Phone.html\">ContactsContract.CommonDataKinds.Phone</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing a telephone number. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Photo.html\">ContactsContract.CommonDataKinds.Photo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing a photo for the contact. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Relation.html\">ContactsContract.CommonDataKinds.Relation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing a relation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html\">ContactsContract.CommonDataKinds.SipAddress</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing a SIP address for the contact. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html\">ContactsContract.CommonDataKinds.StructuredName</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A data kind representing the contact's proper name. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html\">ContactsContract.CommonDataKinds.StructuredPostal</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing a postal addresses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.CommonDataKinds.Website.html\">ContactsContract.CommonDataKinds.Website</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A data kind representing a website related to the contact. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.ContactNameColumns.html\">ContactsContract.ContactNameColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contact name and contact name metadata columns in the RawContacts table. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.ContactOptionsColumns.html\">ContactsContract.ContactOptionsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns of <code><a href=\"/reference/android/provider/ContactsContract.Contacts.html\">ContactsContract.Contacts</a></code> that track the user's ;; preferences for, or interactions with, the contact. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Contacts.html\">ContactsContract.Contacts</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for the contacts table, which contains a record per aggregate ;; of raw contacts representing the same person. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Contacts.AggregationSuggestions.html\">ContactsContract.Contacts.AggregationSuggestions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A <i>read-only</i> sub-directory of a single contact aggregate that ;; contains all aggregation suggestions (other contacts). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Contacts.Data.html\">ContactsContract.Contacts.Data</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A sub-directory of a single contact that contains all of the constituent raw contact ;; <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> rows. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Contacts.Entity.html\">ContactsContract.Contacts.Entity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A sub-directory of a contact that contains all of its ;; <code><a href=\"/reference/android/provider/ContactsContract.RawContacts.html\">ContactsContract.RawContacts</a></code> as well as ;; <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> rows. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Contacts.Photo.html\">ContactsContract.Contacts.Photo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <i>read-only</i> sub-directory of a single contact that contains ;; the contact's primary photo. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Contacts.StreamItems.html\">ContactsContract.Contacts.StreamItems</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A sub-directory of a single contact that contains all of the constituent raw contact ;; <code><a href=\"/reference/android/provider/ContactsContract.StreamItems.html\">ContactsContract.StreamItems</a></code> rows. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.ContactsColumns.html\">ContactsContract.ContactsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns of <code><a href=\"/reference/android/provider/ContactsContract.Contacts.html\">ContactsContract.Contacts</a></code> that refer to intrinsic ;; properties of the contact, as opposed to the user-specified options ;; found in <code><a href=\"/reference/android/provider/ContactsContract.ContactOptionsColumns.html\">ContactsContract.ContactOptionsColumns</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.ContactStatusColumns.html\">ContactsContract.ContactStatusColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Constants for the data table, which contains data points tied to a raw ;; contact. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DataColumns.html\">ContactsContract.DataColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns in the Data table. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DataColumnsWithJoins.html\">ContactsContract.DataColumnsWithJoins</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Combines all columns returned by <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> table queries. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DataUsageFeedback.html\">ContactsContract.DataUsageFeedback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; API allowing applications to send usage information for each <code><a href=\"/reference/android/provider/ContactsContract.Contacts.Data.html\">ContactsContract.Contacts.Data</a></code> row to the ;; Contacts Provider. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DataUsageStatColumns.html\">ContactsContract.DataUsageStatColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns in the Data_Usage_Stat table ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DeletedContacts.html\">ContactsContract.DeletedContacts</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for the deleted contact table. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DeletedContactsColumns.html\">ContactsContract.DeletedContactsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Directory.html\">ContactsContract.Directory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Directory represents a contacts corpus, e.g. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DisplayNameSources.html\">ContactsContract.DisplayNameSources</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Types of data used to produce the display name for a contact. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.DisplayPhoto.html\">ContactsContract.DisplayPhoto</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper class for accessing full-size photos by photo file ID. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.FullNameStyle.html\">ContactsContract.FullNameStyle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for various styles of combining given name, family name etc into ;; a full name. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Groups.html\">ContactsContract.Groups</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for the groups table. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.GroupsColumns.html\">ContactsContract.GroupsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Intents.html\">ContactsContract.Intents</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains helper classes used to create or manage <code><a href=\"/reference/android/content/Intent.html\">Intents</a></code> ;; that involve contacts. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Intents.Insert.html\">ContactsContract.Intents.Insert</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Convenience class that contains string constants used ;; to create contact <code><a href=\"/reference/android/content/Intent.html\">Intents</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.PhoneLookup.html\">ContactsContract.PhoneLookup</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A table that represents the result of looking up a phone number, for ;; example for caller ID. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.PhoneLookupColumns.html\">ContactsContract.PhoneLookupColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.PhoneticNameStyle.html\">ContactsContract.PhoneticNameStyle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for various styles of capturing the pronunciation of a person's name. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Presence.html\">ContactsContract.Presence</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 5. ;; This old name was never meant to be made public. Do not use. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.PresenceColumns.html\">ContactsContract.PresenceColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Additional data mixed in with <code><a href=\"/reference/android/provider/ContactsContract.ContactStatusColumns.html\">ContactsContract.ContactStatusColumns</a></code> to link ;; back to specific <code><a href=\"/reference/android/provider/BaseColumns.html#_ID\">_ID</a></code> entries. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Profile.html\">ContactsContract.Profile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Constants for the user's profile data, which is represented as a single contact on ;; the device that represents the user. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.ProfileSyncState.html\">ContactsContract.ProfileSyncState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A table provided for sync adapters to use for storing private sync state data for the ;; user's personal profile. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.QuickContact.html\">ContactsContract.QuickContact</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper methods to display QuickContact dialogs that allow users to pivot on ;; a specific <code><a href=\"/reference/android/provider/Contacts.html\">Contacts</a></code> entry. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContacts.html\">ContactsContract.RawContacts</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for the raw contacts table, which contains one row of contact ;; information for each person in each synced account. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContacts.Data.html\">ContactsContract.RawContacts.Data</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A sub-directory of a single raw contact that contains all of its ;; <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> rows. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContacts.DisplayPhoto.html\">ContactsContract.RawContacts.DisplayPhoto</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A sub-directory of a single raw contact that represents its primary ;; display photo. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContacts.Entity.html\">ContactsContract.RawContacts.Entity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A sub-directory of a single raw contact that contains all of its ;; <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> rows. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContacts.StreamItems.html\">ContactsContract.RawContacts.StreamItems</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A sub-directory of a single raw contact that contains all of its ;; <code><a href=\"/reference/android/provider/ContactsContract.StreamItems.html\">ContactsContract.StreamItems</a></code> rows. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContactsColumns.html\">ContactsContract.RawContactsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.RawContactsEntity.html\">ContactsContract.RawContactsEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Constants for the raw contacts entities table, which can be thought of as ;; an outer join of the raw_contacts table with the data table. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.Settings.html\">ContactsContract.Settings</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Contacts-specific settings for various <code><a href=\"/reference/android/accounts/Account.html\">Account</a></code>'s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.SettingsColumns.html\">ContactsContract.SettingsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StatusColumns.html\">ContactsContract.StatusColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Social status update columns. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StatusUpdates.html\">ContactsContract.StatusUpdates</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A status update is linked to a <code><a href=\"/reference/android/provider/ContactsContract.Data.html\">ContactsContract.Data</a></code> row and captures ;; the user's latest status update via the corresponding source, e.g. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StreamItemPhotos.html\">ContactsContract.StreamItemPhotos</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Constants for the stream_item_photos table, which contains photos associated with ;; social stream updates. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StreamItemPhotosColumns.html\">ContactsContract.StreamItemPhotosColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns in the StreamItemPhotos table. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StreamItems.html\">ContactsContract.StreamItems</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Constants for the stream_items table, which contains social stream updates from ;; the user's contact list. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.html\">ContactsContract.StreamItems.StreamItemPhotos</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; A sub-directory of a single stream item entry that contains all of its ;; photo rows. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.StreamItemsColumns.html\">ContactsContract.StreamItemsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns in the StreamItems table. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.SyncColumns.html\">ContactsContract.SyncColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns that appear when each row of a table belongs to a specific ;; account, including sync information that an account may need. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/ContactsContract.SyncState.html\">ContactsContract.SyncState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A table provided for sync adapters to use for storing private sync state data for contacts. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/ContentHandler.html\">ContentHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class converts the content of a certain format (i.e. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ContentHandler.html\">ContentHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Receive notification of the logical content of a document. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/ContentHandlerFactory.html\">ContentHandlerFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a factory which is responsible for creating a <code>ContentHandler</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/ContentLengthInputStream.html\">ContentLengthInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Stream that cuts off after a specified number of bytes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/ContentLengthOutputStream.html\">ContentLengthOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A stream wrapper that closes itself after a defined number of bytes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/ContentLengthStrategy.html\">ContentLengthStrategy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a strategy to determine the content length based on the properties ;; of an HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/ContentObservable.html\">ContentObservable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialization of <code><a href=\"/reference/android/database/Observable.html\">Observable</a></code> for <code><a href=\"/reference/android/database/ContentObserver.html\">ContentObserver</a></code> ;; that provides methods for sending notifications to a list of ;; <code><a href=\"/reference/android/database/ContentObserver.html\">ContentObserver</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/ContentObserver.html\">ContentObserver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Receives call backs for changes to content. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/ContentProducer.html\">ContentProducer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract entity content producer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentProvider.html\">ContentProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Content providers are one of the primary building blocks of Android applications, providing ;; content to applications. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentProvider.PipeDataWriter.html\">ContentProvider.PipeDataWriter</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to write a stream of data to a pipe. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentProviderClient.html\">ContentProviderClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The public interface object used to interact with a <code><a href=\"/reference/android/content/ContentProvider.html\">ContentProvider</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentProviderOperation.html\">ContentProviderOperation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentProviderOperation.Builder.html\">ContentProviderOperation.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used to add parameters to a <code><a href=\"/reference/android/content/ContentProviderOperation.html\">ContentProviderOperation</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentProviderResult.html\">ContentProviderResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains the result of the application of a <code><a href=\"/reference/android/content/ContentProviderOperation.html\">ContentProviderOperation</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentQueryMap.html\">ContentQueryMap</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Caches the contents of a cursor into a Map of String->ContentValues and optionally ;; keeps the cache fresh by registering for updates on the content backing the cursor. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentResolver.html\">ContentResolver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides applications access to the content model. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentUris.html\">ContentUris</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility methods useful for working with <code><a href=\"/reference/android/net/Uri.html\">Uri</a></code> objects ;; that use the "content" (content://) scheme. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContentValues.html\">ContentValues</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to store a set of values that the <code><a href=\"/reference/android/content/ContentResolver.html\">ContentResolver</a></code> ;; can process. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Context.html\">Context</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to global information about an application environment. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/ContextCompat.html\">ContextCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/content/Context.html\">Context</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ContextMenu.html\">ContextMenu</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extension of <code><a href=\"/reference/android/view/Menu.html\">Menu</a></code> for context menus providing functionality to modify ;; the header of the context menu. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ContextMenu.ContextMenuInfo.html\">ContextMenu.ContextMenuInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Additional information regarding the creation of the context menu. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/ContextThemeWrapper.html\">ContextThemeWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A ContextWrapper that allows you to modify the theme from what is in the ;; wrapped context. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/ContextWrapper.html\">ContextWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Proxying implementation of Context that simply delegates all of its calls to ;; another Context. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/Cookie.html\">Cookie</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP \"magic-cookie\" represents a piece of state information ;; that the HTTP agent and the target server can exchange to maintain ;; a session. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookieAttributeHandler.html\">CookieAttributeHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Ths interface represents a cookie attribute handler responsible ;; for parsing, validating, and matching a specific cookie attribute, ;; such as path, domain, port, etc. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/CookieHandler.html\">CookieHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides a way to manage cookies with a HTTP protocol handler. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookieIdentityComparator.html\">CookieIdentityComparator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This cookie comparator can be used to compare identity of cookies. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/CookieManager.html\">CookieManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Manages the cookies used by an application's <code><a href=\"/reference/android/webkit/WebView.html\">WebView</a></code> instances. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/CookieManager.html\">CookieManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides a concrete implementation of CookieHandler. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookieOrigin.html\">CookieOrigin</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CookieOrigin class incapsulates details of an origin server that ;; are relevant when parsing, validating or matching HTTP cookies. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookiePathComparator.html\">CookiePathComparator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This cookie comparator ensures that multiple cookies satisfying ;; a common criteria are ordered in the <tt>Cookie</tt> header such ;; that those with more specific Path attributes precede those with ;; less specific. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/CookiePolicy.html\">CookiePolicy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">CookiePolicy has three pre-defined policy. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/params/CookiePolicy.html\">CookiePolicy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookieSpec.html\">CookieSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the cookie management specification. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/CookieSpecBase.html\">CookieSpecBase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Cookie management functions shared by all specification. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookieSpecFactory.html\">CookieSpecFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/params/CookieSpecParamBean.html\">CookieSpecParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/params/CookieSpecPNames.html\">CookieSpecPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parameter names for cookie specifications in HttpCookie. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/CookieSpecRegistry.html\">CookieSpecRegistry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Cookie specification registry that can be used to obtain the corresponding ;; cookie specification implementation for a given type of type or version of ;; cookie. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/CookieStore.html\">CookieStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A CookieStore object is a repository for cookies. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/CookieStore.html\">CookieStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract cookie store. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/CookieSyncManager.html\">CookieSyncManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The CookieSyncManager is used to synchronize the browser cookie store ;; between RAM and permanent storage. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/CopyOnWriteArrayList.html\">CopyOnWriteArrayList</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A thread-safe random-access list. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/CopyOnWriteArraySet.html\">CopyOnWriteArraySet</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/util/Set.html\">Set</a></code> that uses an internal <code><a href=\"/reference/java/util/concurrent/CopyOnWriteArrayList.html\">CopyOnWriteArrayList</a></code> ;; for all of its operations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/CoreConnectionPNames.html\">CoreConnectionPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines parameter names for connections in HttpCore. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/CoreProtocolPNames.html\">CoreProtocolPNames</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines parameter names for protocol execution in HttpCore. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/CornerPathEffect.html\">CornerPathEffect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/CorrectionInfo.html\">CorrectionInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a single text correction that an editor has reported to ;; an input method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/CountDownLatch.html\">CountDownLatch</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A synchronization aid that allows one or more threads to wait until ;; a set of operations being performed in other threads completes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/CountDownTimer.html\">CountDownTimer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Schedule a countdown until a time in the future, with ;; regular notifications on intervals along the way. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/CRC32.html\">CRC32</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The CRC32 class is used to compute a CRC32 checksum from data provided as ;; input value. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/Credentials.html\">Credentials</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class for representing UNIX credentials passed via ancillary data ;; on UNIX domain sockets. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/Credentials.html\">Credentials</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">User name and password based authentication credentials. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/CredentialsProvider.html\">CredentialsProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract credentials provider. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/Criteria.html\">Criteria</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class indicating the application criteria for selecting a ;; location provider. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CRL.html\">CRL</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents Certificate Revocation Lists (CRLs) maintained by a ;; certificate authority. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CRLException.html\">CRLException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown if errors occur during handling of <code>CRL</code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/CRLSelector.html\">CRLSelector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface specification for determining whether a CRL meets some criteria ;; to select CRL objects among a set of <code>CRL</code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CrossProcessCursor.html\">CrossProcessCursor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A cross process cursor is an extension of a <code><a href=\"/reference/android/database/Cursor.html\">Cursor</a></code> that also supports ;; usage from remote processes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-15\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CrossProcessCursorWrapper.html\">CrossProcessCursorWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Cursor wrapper that implements <code><a href=\"/reference/android/database/CrossProcessCursor.html\">CrossProcessCursor</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Currency.html\">Currency</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A currency corresponding to an <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217</a> ;; currency code such as \"EUR\" or \"USD\". </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/Cursor.html\">Cursor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface provides random read-write access to the result set returned ;; by a database query. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/CursorAdapter.html\">CursorAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/widget/CursorAdapter.html\">CursorAdapter</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CursorAdapter.html\">CursorAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Adapter that exposes data from a <code><a href=\"/reference/android/database/Cursor.html\">Cursor</a></code> to a ;; <code><a href=\"/reference/android/widget/ListView.html\">ListView</a></code> widget. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CursorIndexOutOfBoundsException.html\">CursorIndexOutOfBoundsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An exception indicating that a cursor is out of bounds. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CursorJoiner.html\">CursorJoiner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Does a join on two cursors using the specified columns. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CursorJoiner.Result.html\">CursorJoiner.Result</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The result of a call to next(). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/CursorLoader.html\">CursorLoader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A loader that queries the <code><a href=\"/reference/android/content/ContentResolver.html\">ContentResolver</a></code> and returns a <code><a href=\"/reference/android/database/Cursor.html\">Cursor</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/CursorLoader.html\">CursorLoader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/content/CursorLoader.html\">CursorLoader</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/CursorTreeAdapter.html\">CursorTreeAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An adapter that exposes data from a series of <code><a href=\"/reference/android/database/Cursor.html\">Cursor</a></code>s to an ;; <code><a href=\"/reference/android/widget/ExpandableListView.html\">ExpandableListView</a></code> widget. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CursorWindow.html\">CursorWindow</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer containing multiple cursor rows. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/CursorWrapper.html\">CursorWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper class for Cursor that delegates all calls to the actual cursor object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/CycleInterpolator.html\">CycleInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Repeats the animation for a specified number of cycles. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/CyclicBarrier.html\">CyclicBarrier</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A synchronization aid that allows a set of threads to all wait for ;; each other to reach a common barrier point. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_D\">D</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/DashPathEffect.html\">DashPathEffect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/DatabaseErrorHandler.html\">DatabaseErrorHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface to let the apps define the actions to take when the following errors are detected ;; database corruption ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/DatabaseMetaData.html\">DatabaseMetaData</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface which provides comprehensive information about the database ;; management system and its supported features. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/DatabaseUtils.html\">DatabaseUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static utility methods for dealing with databases and <code><a href=\"/reference/android/database/Cursor.html\">Cursor</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/DatabaseUtils.InsertHelper.html\">DatabaseUtils.InsertHelper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 17. ;; Use <code><a href=\"/reference/android/database/sqlite/SQLiteStatement.html\">SQLiteStatement</a></code> instead. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/database/DatabaseUtilsCompat.html\">DatabaseUtilsCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/database/DatabaseUtils.html\">DatabaseUtils</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/DataFormatException.html\">DataFormatException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DataFormatException</code> is used to indicate an error in the format of a ;; particular data stream which is to be uncompressed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/DatagramChannel.html\">DatagramChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>DatagramChannel</code> is a selectable channel that represents a partial ;; abstraction of a datagram socket. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/DatagramPacket.html\">DatagramPacket</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a datagram packet which contains data either to be sent ;; or received through a <code>DatagramSocket</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/DatagramSocket.html\">DatagramSocket</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements a UDP socket for sending and receiving <code>DatagramPacket</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/DatagramSocketImpl.html\">DatagramSocketImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The abstract superclass for datagram and multicast socket implementations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/DatagramSocketImplFactory.html\">DatagramSocketImplFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface defines a factory for datagram socket implementations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/DataInput.html\">DataInput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an interface for classes that are able to read big-endian typed data from some ;; source. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/DataInputStream.html\">DataInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code> and reads big-endian typed data from it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/DataOutput.html\">DataOutput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an interface for classes that are able to write big-endian typed data to some ;; target. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/DataOutputStream.html\">DataOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/OutputStream.html\">OutputStream</a></code> and writes big-endian typed data to it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/DataSetObservable.html\">DataSetObservable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialization of <code><a href=\"/reference/android/database/Observable.html\">Observable</a></code> for <code><a href=\"/reference/android/database/DataSetObserver.html\">DataSetObserver</a></code> ;; that provides methods for sending notifications to a list of ;; <code><a href=\"/reference/android/database/DataSetObserver.html\">DataSetObserver</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/DataSetObserver.html\">DataSetObserver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Receives call backs when a data set has been changed, or made invalid. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/sql/DataSource.html\">DataSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for the creation of <code>Connection</code> objects which represent a ;; connection to a database. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/DataTruncation.html\">DataTruncation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An exception which is thrown when a JDBC driver unexpectedly truncates a data ;; value either when reading (resulting in warning), or when writing data ;; (resulting in an error). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/datatype/DatatypeConfigurationException.html\">DatatypeConfigurationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Indicates a serious configuration error. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/datatype/DatatypeConstants.html\">DatatypeConstants</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Utility class to contain basic Datatype values as constants. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/datatype/DatatypeConstants.Field.html\">DatatypeConstants.Field</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Type-safe enum class that represents six fields ;; of the <code><a href=\"/reference/javax/xml/datatype/Duration.html\">Duration</a></code> class. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/datatype/DatatypeFactory.html\">DatatypeFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Factory that creates new <code>javax.xml.datatype</code> <code>Object</code>s that map XML to/from Java <code>Object</code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/Date.html\">Date</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class which can consume and produce dates in SQL <code>Date</code> format. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Date.html\">Date</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specific moment in time, with millisecond precision. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/format/DateFormat.html\">DateFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class for producing strings with formatted date/time. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/DateFormat.html\">DateFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Formats or parses dates and times. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/DateFormat.Field.html\">DateFormat.Field</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The instances of this inner class are used as attribute keys and values ;; in <code>AttributedCharacterIterator</code> that the ;; <code><a href=\"/reference/java/text/SimpleDateFormat.html#formatToCharacterIterator(java.lang.Object)\">formatToCharacterIterator(Object)</a></code> method returns. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/DateFormatSymbols.html\">DateFormatSymbols</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates localized date-time formatting data, such as the names of the ;; months, the names of the days of the week, and the time zone data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/DateKeyListener.html\">DateKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">For entering dates in a text field. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/DateParseException.html\">DateParseException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An exception to indicate an error parsing a date string. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/DatePicker.html\">DatePicker</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is a widget for selecting a date. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/DatePicker.OnDateChangedListener.html\">DatePicker.OnDateChangedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The callback used to indicate the user changes\\d the date. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/DatePickerDialog.html\">DatePickerDialog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A simple dialog containing an <code><a href=\"/reference/android/widget/DatePicker.html\">DatePicker</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/DatePickerDialog.OnDateSetListener.html\">DatePickerDialog.OnDateSetListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The callback used to indicate the user is done filling in the date. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/DateSorter.html\">DateSorter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Sorts dates into the following groups: ;; Today ;; Yesterday ;; seven days ago ;; one month ago ;; older than a month ago ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/DateTimeKeyListener.html\">DateTimeKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">For entering dates and times in the same text field. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/format/DateUtils.html\">DateUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class contains various date-related utilities for creating text for things like ;; elapsed time and date ranges, strings for days of the week and months, and AM/PM text etc. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/cookie/DateUtils.html\">DateUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A utility class for parsing and formatting HTTP dates as used in cookies and ;; other headers. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/DeadObjectException.html\">DeadObjectException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The object you are calling has died, because its hosting process ;; no longer exists. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Debug.html\">Debug</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides various debugging methods for Android applications, including ;; tracing and allocation counts. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Debug.InstructionCount.html\">Debug.InstructionCount</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">API for gathering and querying instruction counts. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Debug.MemoryInfo.html\">Debug.MemoryInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to retrieved various statistics about the memory mappings for this ;; process. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/DebugUtils.html\">DebugUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Various utilities for debugging and logging. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/DecelerateInterpolator.html\">DecelerateInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the rate of change starts out quickly and ;; and then decelerates. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/DecimalFormat.html\">DecimalFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A concrete subclass of <code><a href=\"/reference/java/text/NumberFormat.html\">NumberFormat</a></code> that formats decimal numbers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/DecimalFormatSymbols.html\">DecimalFormatSymbols</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates the set of symbols (such as the decimal separator, the grouping ;; separator, and so on) needed by <code>DecimalFormat</code> to format numbers. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/DeclHandler.html\">DeclHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 extension handler for DTD declaration events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/DefaultClientConnection.html\">DefaultClientConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of an operated client connection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/DefaultClientConnectionOperator.html\">DefaultClientConnectionOperator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a ;; <code><a href=\"/reference/org/apache/http/conn/ClientConnectionOperator.html\">ClientConnectionOperator</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultConnectionKeepAliveStrategy.html\">DefaultConnectionKeepAliveStrategy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a strategy deciding duration ;; that a connection can remain idle. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/DefaultConnectionReuseStrategy.html\">DefaultConnectionReuseStrategy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a strategy deciding about connection re-use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/DefaultDatabaseErrorHandler.html\">DefaultDatabaseErrorHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default class used to define the actions to take when the database corruption is reported ;; by sqlite. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/DefaultedHttpContext.html\">DefaultedHttpContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code><a href=\"/reference/org/apache/http/protocol/HttpContext.html\">HttpContext</a></code> implementation that delegates resolution of an attribute ;; to the given default <code><a href=\"/reference/org/apache/http/protocol/HttpContext.html\">HttpContext</a></code> instance if the attribute is not ;; present in the local one. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/DefaultedHttpParams.html\">DefaultedHttpParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code> implementation that delegates resolution of a parameter ;; to the given default <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code> instance if the parameter is not ;; present in the local one. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/helpers/DefaultHandler.html\">DefaultHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default base class for SAX2 event handlers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/DefaultHandler2.html\">DefaultHandler2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class extends the SAX2 base handler class to support the ;; SAX2 <code><a href=\"/reference/org/xml/sax/ext/LexicalHandler.html\">LexicalHandler</a></code>, <code><a href=\"/reference/org/xml/sax/ext/DeclHandler.html\">DeclHandler</a></code>, and ;; <code><a href=\"/reference/org/xml/sax/ext/EntityResolver2.html\">EntityResolver2</a></code> extensions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultHttpClient.html\">DefaultHttpClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of an HTTP client. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/DefaultHttpClientConnection.html\">DefaultHttpClientConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a client-side HTTP connection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/DefaultHttpRequestFactory.html\">DefaultHttpRequestFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a factory for creating request objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultHttpRequestRetryHandler.html\">DefaultHttpRequestRetryHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The default <code><a href=\"/reference/org/apache/http/client/HttpRequestRetryHandler.html\">HttpRequestRetryHandler</a></code> used by request executors. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/DefaultHttpResponseFactory.html\">DefaultHttpResponseFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a factory for creating response objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/DefaultHttpRoutePlanner.html\">DefaultHttpRoutePlanner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of an <code><a href=\"/reference/org/apache/http/conn/routing/HttpRoutePlanner.html\">HttpRoutePlanner</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/DefaultHttpServerConnection.html\">DefaultHttpServerConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of a server-side HTTP connection. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultProxyAuthenticationHandler.html\">DefaultProxyAuthenticationHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultRedirectHandler.html\">DefaultRedirectHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of <code><a href=\"/reference/org/apache/http/client/RedirectHandler.html\">RedirectHandler</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultRequestDirector.html\">DefaultRequestDirector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of <code><a href=\"/reference/org/apache/http/client/RequestDirector.html\">RequestDirector</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/DefaultResponseParser.html\">DefaultResponseParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultTargetAuthenticationHandler.html\">DefaultTargetAuthenticationHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/DefaultUserTokenHandler.html\">DefaultUserTokenHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/Deflater.html\">Deflater</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class compresses data using the <i>DEFLATE</i> algorithm (see <a ;; href=\"http://www.gzip.org/algorithm.txt\">specification</a>). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/DeflaterInputStream.html\">DeflaterInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>InputStream</code> filter to compress data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/DeflaterOutputStream.html\">DeflaterOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides an implementation of <code>FilterOutputStream</code> that ;; compresses data using the <i>DEFLATE</i> algorithm. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/Delayed.html\">Delayed</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A mix-in style interface for marking objects that should be ;; acted upon after a given delay. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/DelayQueue.html\">DelayQueue</a><E extends <a href=\"/reference/java/util/concurrent/Delayed.html\">Delayed</a>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An unbounded <code><a href=\"/reference/java/util/concurrent/BlockingQueue.html\">blocking queue</a></code> of ;; <tt>Delayed</tt> elements, in which an element can only be taken ;; when its delay has expired. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/DeniedByServerException.html\">DeniedByServerException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Exception thrown when the provisioning server or key server denies a ;; certficate or license for a device. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Deprecated.html\">Deprecated</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Annotation type used to mark program elements that should no longer be used ;; by programmers. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Deque.html\">Deque</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A linear collection that supports element insertion and removal at ;; both ends. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/DESedeKeySpec.html\">DESedeKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The key specification for a triple-DES (DES-EDE) key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/DESKeySpec.html\">DESKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The key specification for a DES key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/auth/Destroyable.html\">Destroyable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Allows for special treatment of sensitive information, when it comes to ;; destroying or clearing of the data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/auth/DestroyFailedException.html\">DestroyFailedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals that the <code><a href=\"/reference/javax/security/auth/Destroyable.html#destroy()\">destroy()</a></code> method failed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/admin/DeviceAdminInfo.html\">DeviceAdminInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to specify meta information of a device administrator ;; component. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/admin/DeviceAdminReceiver.html\">DeviceAdminReceiver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for implementing a device administration component. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/admin/DevicePolicyManager.html\">DevicePolicyManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public interface for managing policies enforced on a device. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/dalvik/system/DexClassLoader.html\">DexClassLoader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class loader that loads classes from <code>.jar</code> and <code>.apk</code> files ;; containing a <code>classes.dex</code> entry. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/dalvik/system/DexFile.html\">DexFile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Manipulates DEX files. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/DhcpInfo.html\">DhcpInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 18. ;; - use LinkProperties - To be removed 11/2014 ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/DHGenParameterSpec.html\">DHGenParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The algorithm parameter specification for generating Diffie-Hellman ;; parameters used in Diffie-Hellman key agreement. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/interfaces/DHKey.html\">DHKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for a Diffie-Hellman key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/DHParameterSpec.html\">DHParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The algorithm parameter specification for the Diffie-Hellman algorithm. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/interfaces/DHPrivateKey.html\">DHPrivateKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for a private key in the Diffie-Hellman key exchange protocol. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/DHPrivateKeySpec.html\">DHPrivateKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The key specification for a Diffie-Hellman private key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/interfaces/DHPublicKey.html\">DHPublicKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for a public key in the Diffie-Hellman key exchange protocol. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/DHPublicKeySpec.html\">DHPublicKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The key specification for a Diffie-Hellman public key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/DialerFilter.html\">DialerFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/DialerKeyListener.html\">DialerKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">For dialing-only text entry ;; <p></p> ;; As for all implementations of <code><a href=\"/reference/android/text/method/KeyListener.html\">KeyListener</a></code>, this class is only concerned ;; with hardware keyboards. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Dialog.html\">Dialog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for Dialogs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/DialogFragment.html\">DialogFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A fragment that displays a dialog window, floating on top of its ;; activity's window. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/DialogFragment.html\">DialogFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/app/DialogFragment.html\">DialogFragment</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.html\">DialogInterface</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.OnCancelListener.html\">DialogInterface.OnCancelListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface used to allow the creator of a dialog to run some code when the ;; dialog is canceled. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.OnClickListener.html\">DialogInterface.OnClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface used to allow the creator of a dialog to run some code when an ;; item on the dialog is clicked.. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.OnDismissListener.html\">DialogInterface.OnDismissListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface used to allow the creator of a dialog to run some code when the ;; dialog is dismissed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.OnKeyListener.html\">DialogInterface.OnKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a key event is ;; dispatched to this dialog. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.OnMultiChoiceClickListener.html\">DialogInterface.OnMultiChoiceClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface used to allow the creator of a dialog to run some code when an ;; item in a multi-choice dialog is clicked. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/DialogInterface.OnShowListener.html\">DialogInterface.OnShowListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface used to allow the creator of a dialog to run some code when the ;; dialog is shown. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/preference/DialogPreference.html\">DialogPreference</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A base class for <code><a href=\"/reference/android/preference/Preference.html\">Preference</a></code> objects that are ;; dialog-based. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Dictionary.html\">Dictionary</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><strong>Note: Do not use this class since it is obsolete. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/DigestException.html\">DigestException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DigestException</code> is a general message digest exception. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/DigestInputStream.html\">DigestInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DigestInputStream</code> is a <code>FilterInputStream</code> which maintains an ;; associated message digest. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/DigestOutputStream.html\">DigestOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DigestOutputStream</code> is a <code>FilterOutputStream</code> which maintains an ;; associated message digest. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/auth/DigestScheme.html\">DigestScheme</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Digest authentication scheme as defined in RFC 2617. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/auth/DigestSchemeFactory.html\">DigestSchemeFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/DigitalClock.html\">DigitalClock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 17. ;; It is recommended you use <code><a href=\"/reference/android/widget/TextClock.html\">TextClock</a></code> instead. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/DigitsKeyListener.html\">DigitsKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">For digits-only text entry ;; <p></p> ;; As for all implementations of <code><a href=\"/reference/android/text/method/KeyListener.html\">KeyListener</a></code>, this class is only concerned ;; with hardware keyboards. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/DiscretePathEffect.html\">DiscretePathEffect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/Display.html\">Display</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides information about the size and density of a logical display. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/display/DisplayManager.html\">DisplayManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Manages the properties of attached displays. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/display/DisplayManager.DisplayListener.html\">DisplayManager.DisplayListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens for changes in available display devices. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/hardware/display/DisplayManagerCompat.html\">DisplayManagerCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/hardware/display/DisplayManager.html\">DisplayManager</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/DisplayMetrics.html\">DisplayMetrics</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A structure describing general information about a display, such as its ;; size, density, and font scaling. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/Document.html\">Document</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>Document</code> interface represents the entire HTML or XML ;; document. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/parsers/DocumentBuilder.html\">DocumentBuilder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the API to obtain DOM Document instances from an XML ;; document. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/parsers/DocumentBuilderFactory.html\">DocumentBuilderFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a factory API that enables applications to obtain a ;; parser that produces DOM object trees from XML documents. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/Documented.html\">Documented</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a meta-annotation for indicating that an annotation is documented and ;; considered part of the public API. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DocumentFragment.html\">DocumentFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DocumentFragment</code> is a \"lightweight\" or \"minimal\" ;; <code>Document</code> object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/DocumentHandler.html\">DocumentHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This interface was deprecated ;; in API level 1. ;; This interface has been replaced by the SAX2 ;; <code><a href=\"/reference/org/xml/sax/ContentHandler.html\">ContentHandler</a></code> ;; interface, which includes Namespace support.</em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DocumentType.html\">DocumentType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Each <code>Document</code> has a <code>doctype</code> attribute whose value ;; is either <code>null</code> or a <code>DocumentType</code> object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/DomainCombiner.html\">DomainCombiner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMConfiguration.html\">DOMConfiguration</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>DOMConfiguration</code> interface represents the configuration ;; of a document and maintains a table of recognized parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMError.html\">DOMError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DOMError</code> is an interface that describes an error. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMErrorHandler.html\">DOMErrorHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DOMErrorHandler</code> is a callback interface that the DOM ;; implementation can call when reporting errors that happens while ;; processing XML data, or when doing some other processing (e.g. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMException.html\">DOMException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">DOM operations only raise exceptions in \"exceptional\" circumstances, i.e., ;; when an operation is impossible to perform (either for logical reasons, ;; because data is lost, or because the implementation has become unstable). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMImplementation.html\">DOMImplementation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>DOMImplementation</code> interface provides a number of methods ;; for performing operations that are independent of any particular instance ;; of the document object model. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMImplementationList.html\">DOMImplementationList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>DOMImplementationList</code> interface provides the abstraction ;; of an ordered collection of DOM implementations, without defining or ;; constraining how this collection is implemented. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/DOMImplementationLS.html\">DOMImplementationLS</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DOMImplementationLS</code> contains the factory methods for creating ;; Load and Save objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMImplementationSource.html\">DOMImplementationSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface permits a DOM implementer to supply one or more ;; implementations, based upon requested features and versions, as specified ;; in . </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/transform/dom/DOMLocator.html\">DOMLocator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates the position of a node in a source DOM, intended ;; primarily for error reporting. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMLocator.html\">DOMLocator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>DOMLocator</code> is an interface that describes a location (e.g. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/transform/dom/DOMResult.html\">DOMResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Acts as a holder for a transformation result tree in the form of a Document Object Model (DOM) tree. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/transform/dom/DOMSource.html\">DOMSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Acts as a holder for a transformation Source tree in the ;; form of a Document Object Model (DOM) tree. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/DOMStringList.html\">DOMStringList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>DOMStringList</code> interface provides the abstraction of an ;; ordered collection of <code>DOMString</code> values, without defining or ;; constraining how this collection is implemented. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Double.html\">Double</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>double</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Double2.html\">Double2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript double2 type back ;; to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Double3.html\">Double3</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript double3 type back ;; to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Double4.html\">Double4</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript double4 type back ;; to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/DoubleBuffer.html\">DoubleBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer of doubles. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/DownloadListener.html\">DownloadListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/DownloadManager.html\">DownloadManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The download manager is a system service that handles long-running HTTP downloads. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/DownloadManager.Query.html\">DownloadManager.Query</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class may be used to filter download manager queries. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/DownloadManager.Request.html\">DownloadManager.Request</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class contains all the information necessary to request a new download. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/DragEvent.html\">DragEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents an event that is sent out by the system at various times during a drag and drop ;; operation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/Drawable.html\">Drawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Drawable is a general abstraction for \"something that can be drawn.\" Most ;; often you will deal with Drawable as the type of resource retrieved for ;; drawing things to the screen; the Drawable class provides a generic API for ;; dealing with an underlying visual resource that may take a variety of forms. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/Drawable.Callback.html\">Drawable.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implement this interface if you want to create an animated drawable that ;; extends <code><a href=\"/reference/android/graphics/drawable/Drawable.html\">Drawable</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/Drawable.ConstantState.html\">Drawable.ConstantState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This abstract class is used by <code><a href=\"/reference/android/graphics/drawable/Drawable.html\">Drawable</a></code>s to store shared constant state and data ;; between Drawables. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/graphics/drawable/DrawableCompat.html\">DrawableCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/graphics/drawable/Drawable.html\">Drawable</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/DrawableContainer.html\">DrawableContainer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A helper class that contains several <code><a href=\"/reference/android/graphics/drawable/Drawable.html\">Drawable</a></code>s and selects which one to use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/DrawableContainer.DrawableContainerState.html\">DrawableContainer.DrawableContainerState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A ConstantState that can contain several <code><a href=\"/reference/android/graphics/drawable/Drawable.html\">Drawable</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/DrawableMarginSpan.html\">DrawableMarginSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/DrawerLayout.html\">DrawerLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">DrawerLayout acts as a top-level container for window content that allows for ;; interactive \"drawer\" views to be pulled out from the edge of the window. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/DrawerLayout.DrawerListener.html\">DrawerLayout.DrawerListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for monitoring events about drawers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/DrawerLayout.LayoutParams.html\">DrawerLayout.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/DrawerLayout.SavedState.html\">DrawerLayout.SavedState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">State persisted across instances ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/DrawerLayout.SimpleDrawerListener.html\">DrawerLayout.SimpleDrawerListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Stub/no-op implementations of all methods of <code><a href=\"/reference/android/support/v4/widget/DrawerLayout.DrawerListener.html\">DrawerLayout.DrawerListener</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/DrawFilter.html\">DrawFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A DrawFilter subclass can be installed in a Canvas. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/service/dreams/DreamService.html\">DreamService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extend this class to implement a custom dream (available to the user as a \"Daydream\"). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/Driver.html\">Driver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface to a JDBC driver. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xmlpull/v1/sax2/Driver.html\">Driver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 Driver that pulls events from XmlPullParser ;; and comverts them into SAX2 callbacks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/DriverManager.html\">DriverManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides facilities for managing JDBC drivers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/sql/DriverPropertyInfo.html\">DriverPropertyInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class holding information about driver properties of a database connection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmConvertedStatus.html\">DrmConvertedStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that wraps converted data, conversion status, and the ;; offset for appending the header and body signature to the converted data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmErrorEvent.html\">DrmErrorEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that is passed to the ;; <code><a href=\"/reference/android/drm/DrmManagerClient.OnErrorListener.html#onError(android.drm.DrmManagerClient, android.drm.DrmErrorEvent)\">onError()</a></code> callback. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmEvent.html\">DrmEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A base class that is used to send asynchronous event information from the DRM framework. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmInfo.html\">DrmInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that describes the information required to send transactions ;; between a device and an online DRM server. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmInfoEvent.html\">DrmInfoEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that is passed to the ;; <code><a href=\"/reference/android/drm/DrmManagerClient.OnInfoListener.html#onInfo(android.drm.DrmManagerClient, android.drm.DrmInfoEvent)\">onInfo()</a></code> callback. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmInfoRequest.html\">DrmInfoRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that is used to pass information to an online DRM server. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmInfoStatus.html\">DrmInfoStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that wraps the result of communication between a device ;; and an online DRM server. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmManagerClient.html\">DrmManagerClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The main programming interface for the DRM framework. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmManagerClient.OnErrorListener.html\">DrmManagerClient.OnErrorListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback that receives information about DRM framework errors. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmManagerClient.OnEventListener.html\">DrmManagerClient.OnEventListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback that receives information ;; about DRM processing events. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmManagerClient.OnInfoListener.html\">DrmManagerClient.OnInfoListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback that receives status messages and warnings ;; during registration and rights acquisition. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmRights.html\">DrmRights</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that wraps the license information retrieved from the online DRM server. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmStore.html\">DrmStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines constants that are used by the DRM framework. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmStore.Action.html\">DrmStore.Action</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines actions that can be performed on rights-protected content. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmStore.ConstraintsColumns.html\">DrmStore.ConstraintsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for the columns that represent DRM constraints. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmStore.DrmObjectType.html\">DrmStore.DrmObjectType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines DRM object types. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmStore.Playback.html\">DrmStore.Playback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines playback states for content. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmStore.RightsStatus.html\">DrmStore.RightsStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines status notifications for digital rights. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmSupportInfo.html\">DrmSupportInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity class that wraps the capability of each DRM plug-in (agent), ;; such as the MIME type and file suffix the DRM plug-in can handle. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmUtils.html\">DrmUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A utility class that provides operations for parsing extended metadata embedded in ;; DRM constraint information. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/drm/DrmUtils.ExtendedMetadataParser.html\">DrmUtils.ExtendedMetadataParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility that parses extended metadata embedded in DRM constraint information. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/DropBoxManager.html\">DropBoxManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Enqueues chunks of data (from various sources -- application crashes, kernel ;; log records, etc.). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/DropBoxManager.Entry.html\">DropBoxManager.Entry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A single entry retrieved from the drop box. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/DSAKey.html\">DSAKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base interface for Digital Signature Algorithm (DSA) public or private ;; keys. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/DSAKeyPairGenerator.html\">DSAKeyPairGenerator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for key generators that can generate DSA key pairs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/DSAParameterSpec.html\">DSAParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameter specification used with the Digital Signature Algorithm (DSA). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/DSAParams.html\">DSAParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for Digital Signature Algorithm (DSA) specific parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/DSAPrivateKey.html\">DSAPrivateKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for a Digital Signature Algorithm (DSA) private key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/DSAPrivateKeySpec.html\">DSAPrivateKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters specifying a DSA private key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/DSAPublicKey.html\">DSAPublicKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for a Digital Signature Algorithm (DSA) public key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/DSAPublicKeySpec.html\">DSAPublicKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters specifying a DSA public key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/DTDHandler.html\">DTDHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Receive notification of basic DTD-related events. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/DuplicateFormatFlagsException.html\">DuplicateFormatFlagsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The unchecked exception will be thrown out if there are duplicate flags given ;; out in the format specifier. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/datatype/Duration.html\">Duration</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Immutable representation of a time span as defined in ;; the W3C XML Schema 1.0 specification. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/DynamicDrawableSpan.html\">DynamicDrawableSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/DynamicLayout.html\">DynamicLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">DynamicLayout is a text layout that updates itself as the text is edited. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_E\">E</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/EasyEditSpan.html\">EasyEditSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides an easy way to edit a portion of text. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECField.html\">ECField</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base interface for a Finite Field of an Elliptic Curve. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECFieldF2m.html\">ECFieldF2m</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters specifying a <i>characteristic 2 finite field</i> of an ;; elliptic curve. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECFieldFp.html\">ECFieldFp</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters specifying a <i>prime finite field</i> of an ;; elliptic curve. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECGenParameterSpec.html\">ECGenParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameter specification used to generate elliptic curve domain parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/ECKey.html\">ECKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base interface for Elliptic Curve (EC) public or private keys. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECParameterSpec.html\">ECParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameter specification used with Elliptic Curve Cryptography (ECC). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECPoint.html\">ECPoint</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Point on an Elliptic Curve in barycentric (or affine) coordinates. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/ECPrivateKey.html\">ECPrivateKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for an Elliptic Curve (EC) private key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECPrivateKeySpec.html\">ECPrivateKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters specifying an Elliptic Curve (EC) private key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/interfaces/ECPublicKey.html\">ECPublicKey</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for an Elliptic Curve (EC) public key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/ECPublicKeySpec.html\">ECPublicKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters specifying an Elliptic Curve (EC) public key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/EdgeEffect.html\">EdgeEffect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class performs the graphical effect used at the edges of scrollable widgets ;; when the user scrolls beyond the content bounds in 2D space. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/EdgeEffectCompat.html\">EdgeEffectCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing <code><a href=\"/reference/android/widget/EdgeEffect.html\">EdgeEffect</a></code> introduced after ;; API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Editable.html\">Editable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is the interface for text whose content and markup ;; can be changed (as opposed ;; to immutable text like Strings). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Editable.Factory.html\">Editable.Factory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Factory used by TextView to create new Editables. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/EditorInfo.html\">EditorInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An EditorInfo describes several attributes of a text editing object ;; that an input method is communicating with (typically an EditText), most ;; importantly the type of text content it contains. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/EditText.html\">EditText</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">EditText is a thin veneer over TextView that configures itself ;; to be editable. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/preference/EditTextPreference.html\">EditTextPreference</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/android/preference/Preference.html\">Preference</a></code> that allows for string ;; input. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/effect/Effect.html\">Effect</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Effects are high-performance transformations that can be applied to image frames. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/effect/EffectContext.html\">EffectContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>An EffectContext keeps all necessary state information to run Effects within a Open GL ES 2.0 ;; context. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/effect/EffectFactory.html\">EffectFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>The EffectFactory class defines the list of available Effects, and provides functionality to ;; inspect and instantiate them. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/effect/EffectUpdateListener.html\">EffectUpdateListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Some effects may issue callbacks to inform the host of changes to the effect state. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGL.html\">EGL</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGL10.html\">EGL10</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGL11.html\">EGL11</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGL14.html\">EGL14</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">EGL 1.4 ;; ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGLConfig.html\">EGLConfig</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper class for native EGLConfig objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGLConfig.html\">EGLConfig</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGLContext.html\">EGLContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper class for native EGLContext objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGLContext.html\">EGLContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGLDisplay.html\">EGLDisplay</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper class for native EGLDisplay objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGLDisplay.html\">EGLDisplay</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGLExt.html\">EGLExt</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">EGL Extensions ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGLObjectHandle.html\">EGLObjectHandle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for wrapped EGL objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/EGLSurface.html\">EGLSurface</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper class for native EGLSurface objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/egl/EGLSurface.html\">EGLSurface</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Element.html\">Element</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>An Element represents one item within an <code><a href=\"/reference/android/renderscript/Allocation.html\">Allocation</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/sax/Element.html\">Element</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An XML element. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/Element.html\">Element</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>Element</code> interface represents an element in an HTML or XML ;; document. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Element.Builder.html\">Element.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder class for producing complex elements with matching field and name ;; pairs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Element.DataKind.html\">Element.DataKind</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The special interpretation of the data if required. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Element.DataType.html\">Element.DataType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">DataType represents the basic type information for a basic element. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/sax/ElementListener.html\">ElementListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens for the beginning and ending of elements. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/ElementType.html\">ElementType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an enumeration for Java program elements. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/EllipticCurve.html\">EllipticCurve</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An Elliptic Curve with its necessary values. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/EmbossMaskFilter.html\">EmbossMaskFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/EmptyStackException.html\">EmptyStackException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>EmptyStackException</code> is thrown if the pop/peek method of a stack is ;; executed on an empty stack. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/EncodedKeySpec.html\">EncodedKeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The abstract key specification for a public or a private key in encoded ;; format. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/util/EncodingUtils.html\">EncodingUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The home for utility methods that handle various encoding tasks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/EncryptedPrivateKeyInfo.html\">EncryptedPrivateKeyInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements the <code>EncryptedPrivateKeyInfo</code> ASN.1 type as ;; specified in <a href=\"http://www.ietf.org/rfc/rfc5208.txt\">PKCS ;; #8 - Private-Key Information Syntax Standard</a>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/sax/EndElementListener.html\">EndElementListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens for the end of elements. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/sax/EndTextElementListener.html\">EndTextElementListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens for the end of text elements. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/EnglishReasonPhraseCatalog.html\">EnglishReasonPhraseCatalog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">English reason phrases for HTTP status codes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Entity.html\">Entity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A representation of a item using ContentValues. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/Entity.html\">Entity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface represents a known entity, either parsed or unparsed, in an ;; XML document. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Entity.NamedContentValues.html\">Entity.NamedContentValues</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/entity/EntityDeserializer.html\">EntityDeserializer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of an entity deserializer. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/client/EntityEnclosingRequestWrapper.html\">EntityEnclosingRequestWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A wrapper class for <code><a href=\"/reference/org/apache/http/HttpEntityEnclosingRequest.html\">HttpEntityEnclosingRequest</a></code>s that can ;; be used to change properties of the current request without ;; modifying the original object. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/EntityIterator.html\">EntityIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialization of <code><a href=\"/reference/java/util/Iterator.html\">Iterator</a></code> that allows iterating over a collection of ;; <code><a href=\"/reference/android/content/Entity.html\">Entity</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/EntityReference.html\">EntityReference</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>EntityReference</code> nodes may be used to represent an entity ;; reference in the tree. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/EntityResolver.html\">EntityResolver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic interface for resolving entities. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/EntityResolver2.html\">EntityResolver2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extended interface for mapping external entity references to input ;; sources, or providing a missing external subset. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/entity/EntitySerializer.html\">EntitySerializer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of an entity serializer. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/EntityTemplate.html\">EntityTemplate</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Entity that delegates the process of content generation to an abstract ;; content producer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/util/EntityUtils.html\">EntityUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static helpers for dealing with <code><a href=\"/reference/org/apache/http/HttpEntity.html\">entities</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Enum.html\">Enum</a><E extends <a href=\"/reference/java/lang/Enum.html\">Enum</a><E>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The superclass of all enumerated types. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/EnumConstantNotPresentException.html\">EnumConstantNotPresentException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown if an <code>enum</code> constant does not exist for a particular name. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Enumeration.html\">Enumeration</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A legacy iteration interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/EnumMap.html\">EnumMap</a><K extends <a href=\"/reference/java/lang/Enum.html\">Enum</a><K>, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>Map</code> specialized for use with <code>Enum</code> types as keys. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/EnumSet.html\">EnumSet</a><E extends <a href=\"/reference/java/lang/Enum.html\">Enum</a><E>></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An EnumSet is a specialized Set to be used with enums as keys. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Environment.html\">Environment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to environment variables. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/EnvironmentalReverb.html\">EnvironmentalReverb</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A sound generated within a room travels in many directions. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/EnvironmentalReverb.OnParameterChangeListener.html\">EnvironmentalReverb.OnParameterChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The OnParameterChangeListener interface defines a method called by the EnvironmentalReverb ;; when a parameter value has changed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/EnvironmentalReverb.Settings.html\">EnvironmentalReverb.Settings</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Settings class regroups all environmental reverb parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/EOFException.html\">EOFException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program encounters the end of a file or stream during an input ;; operation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/EofSensorInputStream.html\">EofSensorInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A stream wrapper that triggers actions on <code><a href=\"/reference/org/apache/http/conn/EofSensorInputStream.html#close()\">close()</a></code> and EOF. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/EofSensorWatcher.html\">EofSensorWatcher</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A watcher for <code><a href=\"/reference/org/apache/http/conn/EofSensorInputStream.html\">EofSensorInputStream</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/Equalizer.html\">Equalizer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An Equalizer is used to alter the frequency response of a particular music source or of the main ;; output mix. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/Equalizer.OnParameterChangeListener.html\">Equalizer.OnParameterChangeListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The OnParameterChangeListener interface defines a method called by the Equalizer when a ;; parameter value has changed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/audiofx/Equalizer.Settings.html\">Equalizer.Settings</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Settings class regroups all equalizer parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Error.html\">Error</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Error</code> is the superclass of all classes that represent unrecoverable ;; errors. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ErrorHandler.html\">ErrorHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic interface for SAX error handlers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/transform/ErrorListener.html\">ErrorListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>To provide customized error handling, implement this interface and ;; use the <code>setErrorListener</code> method to register an instance of the ;; implementation with the <code><a href=\"/reference/javax/xml/transform/Transformer.html\">Transformer</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/ErrorManager.html\">ErrorManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An error reporting facility for <code><a href=\"/reference/java/util/logging/Handler.html\">Handler</a></code> implementations to record any ;; error that may happen during logging. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/ETC1.html\">ETC1</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Methods for encoding and decoding ETC1 textures. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/ETC1Util.html\">ETC1Util</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility methods for using ETC1 compressed textures. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/ETC1Util.ETC1Texture.html\">ETC1Util.ETC1Texture</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A utility class encapsulating a compressed ETC1 texture. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/EventListener.html\">EventListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">EventListener is the superclass of all event listener interfaces. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/EventListenerProxy.html\">EventListenerProxy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This abstract class provides a simple wrapper for objects of type <code>EventListener</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/EventLog.html\">EventLog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Access to the system diagnostic event record. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/EventLog.Event.html\">EventLog.Event</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A previously logged event read from the logs. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/EventLogTags.html\">EventLogTags</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 8. ;; This class is no longer functional. ;; Use <code><a href=\"/reference/android/util/EventLog.html\">EventLog</a></code> instead. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/EventLogTags.Description.html\">EventLogTags.Description</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/EventObject.html\">EventObject</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>EventObject</code>s represent events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Exception.html\">Exception</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Exception</code> is the superclass of all classes that represent recoverable ;; exceptions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/ExceptionInInitializerError.html\">ExceptionInInitializerError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when an exception occurs during class initialization. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/util/ExceptionUtils.html\">ExceptionUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The home for utility methods that handle various exception-related tasks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/Exchanger.html\">Exchanger</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A synchronization point at which threads can pair and swap elements ;; within pairs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/ExecutionContext.html\">ExecutionContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code><a href=\"/reference/org/apache/http/protocol/HttpContext.html\">Context</a></code> attribute names for protocol execution. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ExecutionException.html\">ExecutionException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Exception thrown when attempting to retrieve the result of a task ;; that aborted by throwing an exception. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/Executor.html\">Executor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An object that executes submitted <code><a href=\"/reference/java/lang/Runnable.html\">Runnable</a></code> tasks. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ExecutorCompletionService.html\">ExecutorCompletionService</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/util/concurrent/CompletionService.html\">CompletionService</a></code> that uses a supplied <code><a href=\"/reference/java/util/concurrent/Executor.html\">Executor</a></code> ;; to execute tasks. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/Executors.html\">Executors</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Factory and utility methods for <code><a href=\"/reference/java/util/concurrent/Executor.html\">Executor</a></code>, <code><a href=\"/reference/java/util/concurrent/ExecutorService.html\">ExecutorService</a></code>, <code><a href=\"/reference/java/util/concurrent/ScheduledExecutorService.html\">ScheduledExecutorService</a></code>, <code><a href=\"/reference/java/util/concurrent/ThreadFactory.html\">ThreadFactory</a></code>, and <code><a href=\"/reference/java/util/concurrent/Callable.html\">Callable</a></code> classes defined in this ;; package. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/ExecutorService.html\">ExecutorService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code><a href=\"/reference/java/util/concurrent/Executor.html\">Executor</a></code> that provides methods to manage termination and ;; methods that can produce a <code><a href=\"/reference/java/util/concurrent/Future.html\">Future</a></code> for tracking progress of ;; one or more asynchronous tasks. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/ExemptionMechanism.html\">ExemptionMechanism</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements the functionality of an exemption mechanism such as ;; <i>key recovery</i>, <i>key weakening</i>, or <i>key escrow</i>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/ExemptionMechanismException.html\">ExemptionMechanismException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is the base class for <code>ExemptionMechanismException</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/ExemptionMechanismSpi.html\">ExemptionMechanismSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (<b>SPI</b>) definition for the <code>ExemptionMechanism</code> class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/ExifInterface.html\">ExifInterface</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is a class for reading and writing Exif tags in a JPEG file. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ExpandableListActivity.html\">ExpandableListActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An activity that displays an expandable list of items by binding to a data ;; source implementing the ExpandableListAdapter, and exposes event handlers ;; when the user selects an item. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListAdapter.html\">ExpandableListAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An adapter that links a <code><a href=\"/reference/android/widget/ExpandableListView.html\">ExpandableListView</a></code> with the underlying ;; data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListView.html\">ExpandableListView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A view that shows items in a vertically scrolling two-level list. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListView.ExpandableListContextMenuInfo.html\">ExpandableListView.ExpandableListContextMenuInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extra menu information specific to an <code><a href=\"/reference/android/widget/ExpandableListView.html\">ExpandableListView</a></code> provided ;; to the ;; <code><a href=\"/reference/android/view/View.OnCreateContextMenuListener.html#onCreateContextMenu(android.view.ContextMenu, android.view.View, android.view.ContextMenu.ContextMenuInfo)\">onCreateContextMenu(ContextMenu, View, ContextMenuInfo)</a></code> ;; callback when a context menu is brought up for this AdapterView. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListView.OnChildClickListener.html\">ExpandableListView.OnChildClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a child in this ;; expandable list has been clicked. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListView.OnGroupClickListener.html\">ExpandableListView.OnGroupClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a group in this ;; expandable list has been clicked. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListView.OnGroupCollapseListener.html\">ExpandableListView.OnGroupCollapseListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used for being notified when a group is collapsed </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ExpandableListView.OnGroupExpandListener.html\">ExpandableListView.OnGroupExpandListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used for being notified when a group is expanded </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/widget/ExploreByTouchHelper.html\">ExploreByTouchHelper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">ExploreByTouchHelper is a utility class for implementing accessibility ;; support in custom <code><a href=\"/reference/android/view/View.html\">View</a></code>s that represent a collection of View-like ;; logical items. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/Externalizable.html\">Externalizable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an interface for classes that want to be serializable, but have their ;; own binary representation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/ExtractEditText.html\">ExtractEditText</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Specialization of <code><a href=\"/reference/android/widget/EditText.html\">EditText</a></code> for showing and interacting with the ;; extracted text in a full-screen input method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/ExtractedText.html\">ExtractedText</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about text that has been extracted for use by an input method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/ExtractedTextRequest.html\">ExtractedTextRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Description of what an input method would like from an application when ;; extract text from its input editor. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_F\">F</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/FaceDetector.html\">FaceDetector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Identifies the faces of people in a ;; <code><a href=\"/reference/android/graphics/Bitmap.html\">Bitmap</a></code> graphic object. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/FaceDetector.Face.html\">FaceDetector.Face</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Face contains all the information identifying the location ;; of a face in a bitmap. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/xml/parsers/FactoryConfigurationError.html\">FactoryConfigurationError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a problem with configuration with the Parser Factories ;; exists. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/FeatureInfo.html\">FeatureInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A single feature that can be requested by an application. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/Field.html\">Field</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a field. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/FieldPacker.html\">FieldPacker</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class for packing arguments and structures from Android system objects to ;; RenderScript objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/FieldPosition.html\">FieldPosition</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Identifies fields in formatted strings. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/File.html\">File</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An \"abstract\" representation of a file system entity identified by a ;; pathname. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/FileBackupHelper.html\">FileBackupHelper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A helper class that can be used in conjunction with ;; <code><a href=\"/reference/android/app/backup/BackupAgentHelper.html\">BackupAgentHelper</a></code> to manage the backup of a set of ;; files. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/FileChannel.html\">FileChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract channel type for interaction with a platform file. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/FileChannel.MapMode.html\">FileChannel.MapMode</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>MapMode</code> defines file mapping mode constants. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileDescriptor.html\">FileDescriptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps a Unix file descriptor. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/FileEntity.html\">FileEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity whose content is retrieved from a file. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileFilter.html\">FileFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for filtering <code><a href=\"/reference/java/io/File.html\">File</a></code> objects based on their names ;; or other information. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/FileHandler.html\">FileHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>FileHandler</code> writes logging records into a specified file or a ;; rotating set of files. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileInputStream.html\">FileInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An input stream that reads bytes from a file. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/FileLock.html\">FileLock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>FileLock</code> represents a locked region of a file. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/FileLockInterruptionException.html\">FileLockInterruptionException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>FileLockInterruptionException</code> is thrown when a thread is ;; interrupted while waiting to acquire a file lock. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FilenameFilter.html\">FilenameFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for filtering <code><a href=\"/reference/java/io/File.html\">File</a></code> objects based on their names ;; or the directory they reside in. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/FileNameMap.html\">FileNameMap</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a scheme for mapping a filename type to a MIME content type. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileNotFoundException.html\">FileNotFoundException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a file specified by a program cannot be found. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/FileObserver.html\">FileObserver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Monitors files (using <a href=\"http://en.wikipedia.org/wiki/Inotify\">inotify</a>) ;; to fire an event after files are accessed or changed by by any process on ;; the device (including this one). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileOutputStream.html\">FileOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An output stream that writes bytes to a file. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FilePermission.html\">FilePermission</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/FileProvider.html\">FileProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provider to support easy sharing of private files between apps. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileReader.html\">FileReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized <code><a href=\"/reference/java/io/Reader.html\">Reader</a></code> that reads from a file in the file system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FileWriter.html\">FileWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A specialized <code><a href=\"/reference/java/io/Writer.html\">Writer</a></code> that writes to a file in the file system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Filter.html\">Filter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>A filter constrains data with a filtering pattern. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/Filter.html\">Filter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>Filter</code> provides a mechanism for exercising fine-grained control ;; over which records get logged. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Filter.FilterListener.html\">Filter.FilterListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Listener used to receive a notification upon completion of a filtering ;; operation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Filter.FilterResults.html\">Filter.FilterResults</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Holds the results of a filtering operation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Filterable.html\">Filterable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Defines a filterable behavior. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FilterInputStream.html\">FilterInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code> and performs some transformation on ;; the input data while it is being read. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FilterOutputStream.html\">FilterOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/OutputStream.html\">OutputStream</a></code> and performs some transformation on ;; the output data while it is being written. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/FilterQueryProvider.html\">FilterQueryProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class can be used by external clients of CursorAdapter and ;; CursorTreeAdapter to define how the content of the adapter should be ;; filtered. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FilterReader.html\">FilterReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/Reader.html\">Reader</a></code> and performs some transformation on the ;; input data while it is being read. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/FilterWriter.html\">FilterWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/Writer.html\">Writer</a></code> and performs some transformation on the ;; output data while it is being written. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/FlakyTest.html\">FlakyTest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This annotation can be used on an <code><a href=\"/reference/android/test/InstrumentationTestCase.html\">InstrumentationTestCase</a></code>'s ;; test methods. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Float.html\">Float</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>float</code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Float2.html\">Float2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript float2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Float3.html\">Float3</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript float2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Float4.html\">Float4</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript float2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/FloatBuffer.html\">FloatBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer of floats. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/FloatEvaluator.html\">FloatEvaluator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This evaluator can be used to perform type interpolation between <code>float</code> values. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/FloatMath.html\">FloatMath</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Math routines similar to those found in <code><a href=\"/reference/java/lang/Math.html\">Math</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/Flushable.html\">Flushable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an interface for classes that can (or need to) be flushed, typically ;; before some output processing is considered to be finished and the object ;; gets closed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/FocusFinder.html\">FocusFinder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The algorithm used for finding the next focusable view in a given direction ;; from a view that currently has focus. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/ForegroundColorSpan.html\">ForegroundColorSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/Format.html\">Format</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The base class for all formats. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/Format.Field.html\">Format.Field</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Inner class used to represent <code>Format</code> attributes in the ;; <code>AttributedCharacterIterator</code> that the ;; <code>formatToCharacterIterator()</code> method returns in <code>Format</code> ;; subclasses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/nfc/FormatException.html\">FormatException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/FormatFlagsConversionMismatchException.html\">FormatFlagsConversionMismatchException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>FormatFlagsConversionMismatchException</code> will be thrown if a ;; conversion and the flags are incompatible. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Formattable.html\">Formattable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Classes that handle custom formatting for the 's' specifier of <code>Formatter</code> ;; should implement the <code>Formattable</code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/FormattableFlags.html\">FormattableFlags</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">FormattableFlags are used as a parameter to ;; <code><a href=\"/reference/java/util/Formattable.html#formatTo(java.util.Formatter, int, int, int)\">formatTo(Formatter, int, int, int)</a></code> and change the output ;; format in <code>Formattable</code>s. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/FormattedHeader.html\">FormattedHeader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An HTTP header which is already formatted. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/format/Formatter.html\">Formatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class to aid in formatting common values that are not covered ;; by the <code><a href=\"/reference/java/util/Formatter.html\">Formatter</a></code> class in <code><a href=\"/reference/java/util/package-summary.html\">java.util</a></code> ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Formatter.html\">Formatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Formats arguments according to a format string (like <code>printf</code> in C). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/Formatter.html\">Formatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Formatter</code> objects are used to format <code><a href=\"/reference/java/util/logging/LogRecord.html\">LogRecord</a></code> objects into a ;; string representation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Formatter.BigDecimalLayoutForm.html\">Formatter.BigDecimalLayoutForm</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The enumeration giving the available styles for formatting very large ;; decimal numbers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/FormatterClosedException.html\">FormatterClosedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>FormatterClosedException</code> will be thrown if the formatter has been ;; closed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Fragment.html\">Fragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Fragment is a piece of an application's user interface or behavior ;; that can be placed in an <code><a href=\"/reference/android/app/Activity.html\">Activity</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/Fragment.html\">Fragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Fragment.InstantiationException.html\">Fragment.InstantiationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown by <code><a href=\"/reference/android/app/Fragment.html#instantiate(android.content.Context, java.lang.String, android.os.Bundle)\">instantiate(Context, String, Bundle)</a></code> when ;; there is an instantiation failure. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/Fragment.InstantiationException.html\">Fragment.InstantiationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown by <code><a href=\"/reference/android/support/v4/app/Fragment.html#instantiate(android.content.Context, java.lang.String, android.os.Bundle)\">instantiate(Context, String, Bundle)</a></code> when ;; there is an instantiation failure. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-13\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Fragment.SavedState.html\">Fragment.SavedState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">State information that has been retrieved from a fragment instance ;; through <code><a href=\"/reference/android/app/FragmentManager.html#saveFragmentInstanceState(android.app.Fragment)\">FragmentManager.saveFragmentInstanceState</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/Fragment.SavedState.html\">Fragment.SavedState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">State information that has been retrieved from a fragment instance ;; through <code><a href=\"/reference/android/support/v4/app/FragmentManager.html#saveFragmentInstanceState(android.support.v4.app.Fragment)\">FragmentManager.saveFragmentInstanceState</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentActivity.html\">FragmentActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for activities that want to use the support-based ;; <code><a href=\"/reference/android/support/v4/app/Fragment.html\">Fragment</a></code> and ;; <code><a href=\"/reference/android/support/v4/content/Loader.html\">Loader</a></code> APIs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/FragmentBreadCrumbs.html\">FragmentBreadCrumbs</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper class for showing \"bread crumbs\" representing the fragment ;; stack in an activity. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-12\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/FragmentBreadCrumbs.OnBreadCrumbClickListener.html\">FragmentBreadCrumbs.OnBreadCrumbClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to intercept clicks on the bread crumbs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v13/app/FragmentCompat.html\">FragmentCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> introduced after ;; API level 13 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/FragmentManager.html\">FragmentManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for interacting with <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> objects inside of an ;; <code><a href=\"/reference/android/app/Activity.html\">Activity</a></code> ;; ;; <div class=\"special reference\"> ;; <h3>Developer Guides</h3> ;; <p>For more information about using fragments, read the ;; <a href=\"/guide/topics/fundamentals/fragments.html\">Fragments</a> developer guide. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentManager.html\">FragmentManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/app/FragmentManager.html\">FragmentManager</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/FragmentManager.BackStackEntry.html\">FragmentManager.BackStackEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Representation of an entry on the fragment back stack, as created ;; with <code><a href=\"/reference/android/app/FragmentTransaction.html#addToBackStack(java.lang.String)\">FragmentTransaction.addToBackStack()</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentManager.BackStackEntry.html\">FragmentManager.BackStackEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Representation of an entry on the fragment back stack, as created ;; with <code><a href=\"/reference/android/support/v4/app/FragmentTransaction.html#addToBackStack(java.lang.String)\">FragmentTransaction.addToBackStack()</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/FragmentManager.OnBackStackChangedListener.html\">FragmentManager.OnBackStackChangedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to watch for changes to the back stack. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentManager.OnBackStackChangedListener.html\">FragmentManager.OnBackStackChangedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to watch for changes to the back stack. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v13/app/FragmentPagerAdapter.html\">FragmentPagerAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of <code><a href=\"/reference/android/support/v4/view/PagerAdapter.html\">PagerAdapter</a></code> that ;; represents each page as a <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> that is persistently ;; kept in the fragment manager as long as the user can return to the page. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentPagerAdapter.html\">FragmentPagerAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of <code><a href=\"/reference/android/support/v4/view/PagerAdapter.html\">PagerAdapter</a></code> that ;; represents each page as a <code><a href=\"/reference/android/support/v4/app/Fragment.html\">Fragment</a></code> that is persistently ;; kept in the fragment manager as long as the user can return to the page. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v13/app/FragmentStatePagerAdapter.html\">FragmentStatePagerAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of <code><a href=\"/reference/android/support/v4/view/PagerAdapter.html\">PagerAdapter</a></code> that ;; uses a <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> to manage each page. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentStatePagerAdapter.html\">FragmentStatePagerAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of <code><a href=\"/reference/android/support/v4/view/PagerAdapter.html\">PagerAdapter</a></code> that ;; uses a <code><a href=\"/reference/android/support/v4/app/Fragment.html\">Fragment</a></code> to manage each page. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v13/app/FragmentTabHost.html\">FragmentTabHost</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Version of <code><a href=\"/reference/android/support/v4/app/FragmentTabHost.html\">FragmentTabHost</a></code> that can be ;; used with the platform <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> APIs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentTabHost.html\">FragmentTabHost</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Special TabHost that allows the use of <code><a href=\"/reference/android/support/v4/app/Fragment.html\">Fragment</a></code> objects for ;; its tab content. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/FragmentTransaction.html\">FragmentTransaction</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">API for performing a set of Fragment operations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/FragmentTransaction.html\">FragmentTransaction</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/app/FragmentTransaction.html\">FragmentTransaction</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/FrameLayout.html\">FrameLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">FrameLayout is designed to block out an area on the screen to display ;; a single item. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/FrameLayout.LayoutParams.html\">FrameLayout.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Per-child layout information for layouts that support margins. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/backup/FullBackupDataOutput.html\">FullBackupDataOutput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides the interface through which a <code><a href=\"/reference/android/app/backup/BackupAgent.html\">BackupAgent</a></code> writes entire files ;; to a full backup data set, via its <code><a href=\"/reference/android/app/backup/BackupAgent.html#onFullBackup(android.app.backup.FullBackupDataOutput)\">onFullBackup(FullBackupDataOutput)</a></code> ;; method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/Future.html\">Future</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <tt>Future</tt> represents the result of an asynchronous ;; computation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/FutureTask.html\">FutureTask</a><V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A cancellable asynchronous computation. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_G\">G</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Gallery.html\">Gallery</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 16. ;; This widget is no longer supported. Other horizontally scrolling ;; widgets include <code><a href=\"/reference/android/widget/HorizontalScrollView.html\">HorizontalScrollView</a></code> and <code><a href=\"/reference/android/support/v4/view/ViewPager.html\">ViewPager</a></code> ;; from the support library. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/Gallery.LayoutParams.html\">Gallery.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Gallery extends LayoutParams to provide a place to hold current ;; Transformation information along with previous position/transformation ;; info. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/GatheringByteChannel.html\">GatheringByteChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface for channels that can write a set of buffers in a single ;; operation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/GeneralSecurityException.html\">GeneralSecurityException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>GeneralSecurityException</code> is a general security exception and the ;; superclass for all security specific exceptions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/GenericArrayType.html\">GenericArrayType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface represents an array type with a component type that is either ;; a parameterized type or a type variable. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/GenericDeclaration.html\">GenericDeclaration</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Common interface for language constructs that declare type parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/GenericSignatureFormatError.html\">GenericSignatureFormatError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that a malformed signature has been encountered via a reflective ;; method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/Geocoder.html\">Geocoder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class for handling geocoding and reverse geocoding. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/location/GeofenceHardware.html\">GeofenceHardware</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class handles geofences managed by various hardware subsystems. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/location/GeofenceHardwareCallback.html\">GeofenceHardwareCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The callback class associated with the APIs in <code><a href=\"/reference/android/hardware/location/GeofenceHardware.html\">GeofenceHardware</a></code> ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/location/GeofenceHardwareMonitorCallback.html\">GeofenceHardwareMonitorCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The callback class associated with the status change of hardware montiors ;; in <code><a href=\"/reference/android/hardware/location/GeofenceHardware.html\">GeofenceHardware</a></code> ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/location/GeofenceHardwareRequest.html\">GeofenceHardwareRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents the characteristics of the geofence. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/GeolocationPermissions.html\">GeolocationPermissions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to manage permissions for the WebView's Geolocation ;; JavaScript API. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/GeolocationPermissions.Callback.html\">GeolocationPermissions.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A callback interface used by the host application to set the Geolocation ;; permission state for an origin. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/GeomagneticField.html\">GeomagneticField</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Estimates magnetic field at a given point on ;; Earth, and in particular, to compute the magnetic declination from true ;; north. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/Gesture.html\">Gesture</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A gesture is a hand-drawn shape on a touch screen. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/GestureDetector.html\">GestureDetector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Detects various gestures and events using the supplied <code><a href=\"/reference/android/view/MotionEvent.html\">MotionEvent</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/GestureDetector.OnDoubleTapListener.html\">GestureDetector.OnDoubleTapListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The listener that is used to notify when a double-tap or a confirmed ;; single-tap occur. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/GestureDetector.OnGestureListener.html\">GestureDetector.OnGestureListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The listener that is used to notify when gestures occur. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/GestureDetector.SimpleOnGestureListener.html\">GestureDetector.SimpleOnGestureListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A convenience class to extend when you only want to listen for a subset ;; of all the gestures. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/GestureDetectorCompat.html\">GestureDetectorCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Detects various gestures and events using the supplied <code><a href=\"/reference/android/view/MotionEvent.html\">MotionEvent</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureLibraries.html\">GestureLibraries</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureLibrary.html\">GestureLibrary</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureOverlayView.html\">GestureOverlayView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A transparent overlay for gesture input that can be placed on top of other ;; widgets or contain other widgets. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureOverlayView.OnGestureListener.html\">GestureOverlayView.OnGestureListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureOverlayView.OnGesturePerformedListener.html\">GestureOverlayView.OnGesturePerformedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureOverlayView.OnGesturingListener.html\">GestureOverlayView.OnGesturingListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GesturePoint.html\">GesturePoint</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A timed point of a gesture stroke. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureStore.html\">GestureStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">GestureLibrary maintains gesture examples and makes predictions on a new ;; gesture ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureStroke.html\">GestureStroke</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A gesture stroke started on a touch down and ended on a touch up. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/gesture/GestureUtils.html\">GestureUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility functions for gesture processing & analysis, including methods for: ;; <ul> ;; <li>feature extraction (e.g., samplers and those for calculating bounding ;; boxes and gesture path lengths); ;; <li>geometric transformation (e.g., translation, rotation and scaling); ;; <li>gesture similarity comparison (e.g., calculating Euclidean or Cosine ;; distances between two gestures). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/GetChars.html\">GetChars</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Please implement this interface if your CharSequence has a ;; getChars() method like the one in String that is faster than ;; calling charAt() multiple times. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/opengles/GL.html\">GL</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/opengles/GL10.html\">GL10</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/opengles/GL10Ext.html\">GL10Ext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/opengles/GL11.html\">GL11</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/opengles/GL11Ext.html\">GL11Ext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/microedition/khronos/opengles/GL11ExtensionPack.html\">GL11ExtensionPack</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLDebugHelper.html\">GLDebugHelper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A helper class for debugging OpenGL ES applications. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLES10.html\">GLES10</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLES10Ext.html\">GLES10Ext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLES11.html\">GLES11</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLES11Ext.html\">GLES11Ext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLES20.html\">GLES20</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">OpenGL ES 2.0 ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLES30.html\">GLES30</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">OpenGL ES 3.0 ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLException.html\">GLException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An exception class for OpenGL errors. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLSurfaceView.html\">GLSurfaceView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An implementation of SurfaceView that uses the dedicated surface for ;; displaying OpenGL rendering. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLSurfaceView.EGLConfigChooser.html\">GLSurfaceView.EGLConfigChooser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for choosing an EGLConfig configuration from a list of ;; potential configurations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLSurfaceView.EGLContextFactory.html\">GLSurfaceView.EGLContextFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for customizing the eglCreateContext and eglDestroyContext calls. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLSurfaceView.EGLWindowSurfaceFactory.html\">GLSurfaceView.EGLWindowSurfaceFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for customizing the eglCreateWindowSurface and eglDestroySurface calls. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLSurfaceView.GLWrapper.html\">GLSurfaceView.GLWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface used to wrap a GL interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLSurfaceView.Renderer.html\">GLSurfaceView.Renderer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A generic renderer interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLU.html\">GLU</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A set of GL utilities inspired by the OpenGL Utility Toolkit. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/GLUtils.html\">GLUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class to help bridging OpenGL ES and Android APIs. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/GpsSatellite.html\">GpsSatellite</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents the current state of a GPS satellite. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/GpsStatus.html\">GpsStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents the current state of the GPS engine. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/GpsStatus.Listener.html\">GpsStatus.Listener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used for receiving notifications when GPS status has changed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/GpsStatus.NmeaListener.html\">GpsStatus.NmeaListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used for receiving NMEA sentences from the GPS. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/GradientDrawable.html\">GradientDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Drawable with a color gradient for buttons, backgrounds, etc. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/GradientDrawable.Orientation.html\">GradientDrawable.Orientation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Controls how the gradient is oriented relative to the drawable's bounds ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/Gravity.html\">Gravity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Standard constants and tools for placing an object within a potentially ;; larger container. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/GravityCompat.html\">GravityCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Compatibility shim for accessing newer functionality from <code><a href=\"/reference/android/view/Gravity.html\">Gravity</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/GregorianCalendar.html\">GregorianCalendar</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>GregorianCalendar</code> is a concrete subclass of <code><a href=\"/reference/java/util/Calendar.html\">Calendar</a></code> ;; and provides the standard calendar used by most of the world. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/widget/GridLayout.html\">GridLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A layout that places its children in a rectangular <em>grid</em>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/GridLayout.html\">GridLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A layout that places its children in a rectangular <em>grid</em>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/widget/GridLayout.Alignment.html\">GridLayout.Alignment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Alignments specify where a view should be placed within a cell group and ;; what size it should be. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/GridLayout.Alignment.html\">GridLayout.Alignment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Alignments specify where a view should be placed within a cell group and ;; what size it should be. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/widget/GridLayout.LayoutParams.html\">GridLayout.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Layout information associated with each of the children of a GridLayout. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/GridLayout.LayoutParams.html\">GridLayout.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Layout information associated with each of the children of a GridLayout. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/widget/GridLayout.Spec.html\">GridLayout.Spec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Spec defines the horizontal or vertical characteristics of a group of ;; cells. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/GridLayout.Spec.html\">GridLayout.Spec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Spec defines the horizontal or vertical characteristics of a group of ;; cells. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/GridLayoutAnimationController.html\">GridLayoutAnimationController</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A layout animation controller is used to animated a grid layout's children. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/GridLayoutAnimationController.AnimationParameters.html\">GridLayoutAnimationController.AnimationParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The set of parameters that has to be attached to each view contained in ;; the view group animated by the grid layout animation controller. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/GridView.html\">GridView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A view that shows items in two-dimensional scrolling grid. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/acl/Group.html\">Group</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>Principal</code> that represents a group of principals. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/telephony/gsm/GsmCellLocation.html\">GsmCellLocation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents the cell location on a GSM phone. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/Guard.html\">Guard</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Guard</code> implementors protect access to other objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/GuardedObject.html\">GuardedObject</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>GuardedObject</code> controls access to an object, by checking all requests ;; for the object with a <code>Guard</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/GZIPInputStream.html\">GZIPInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>GZIPInputStream</code> class is used to read data stored in the GZIP ;; format, reading and decompressing GZIP data from the underlying stream into ;; its buffer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/GZIPOutputStream.html\">GZIPOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>GZIPOutputStream</code> class is used to write data to a stream in the ;; GZIP storage format. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_H\">H</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Handler.html\">Handler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Handler allows you to send and process <code><a href=\"/reference/android/os/Message.html\">Message</a></code> and Runnable ;; objects associated with a thread's <code><a href=\"/reference/android/os/MessageQueue.html\">MessageQueue</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/Handler.html\">Handler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>Handler</code> object accepts a logging request and exports the desired ;; messages to a target, for example, a file, the console, etc. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Handler.Callback.html\">Handler.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface you can use when instantiating a Handler to avoid ;; having to implement your own subclass of Handler. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/HandlerBase.html\">HandlerBase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 1. ;; This class works with the deprecated ;; <code><a href=\"/reference/org/xml/sax/DocumentHandler.html\">DocumentHandler</a></code> ;; interface. It has been replaced by the SAX2 ;; <code><a href=\"/reference/org/xml/sax/helpers/DefaultHandler.html\">DefaultHandler</a></code> ;; class.</em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/HandlerThread.html\">HandlerThread</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Handy class for starting a new thread that has a looper. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/HandshakeCompletedEvent.html\">HandshakeCompletedEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The event object encapsulating the information about a completed SSL ;; handshake on a SSL connection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/HandshakeCompletedListener.html\">HandshakeCompletedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The listener to be implemented to receive event notifications on completion ;; of SSL handshake on an SSL connection. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/HapticFeedbackConstants.html\">HapticFeedbackConstants</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants to be used to perform haptic feedback effects via ;; <code><a href=\"/reference/android/view/View.html#performHapticFeedback(int)\">performHapticFeedback(int)</a></code> ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/HashMap.html\">HashMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HashMap is an implementation of <code><a href=\"/reference/java/util/Map.html\">Map</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/HashSet.html\">HashSet</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HashSet is an implementation of a Set. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Hashtable.html\">Hashtable</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Hashtable is a synchronized implementation of <code><a href=\"/reference/java/util/Map.html\">Map</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/Header.html\">Header</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents an HTTP header field. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HeaderElement.html\">HeaderElement</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">One element of an HTTP <code><a href=\"/reference/org/apache/http/Header.html\">header</a></code> value. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HeaderElementIterator.html\">HeaderElementIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A type-safe iterator for <code><a href=\"/reference/org/apache/http/HeaderElement.html\">HeaderElement</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/HeaderGroup.html\">HeaderGroup</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class for combining a set of headers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HeaderIterator.html\">HeaderIterator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A type-safe iterator for <code><a href=\"/reference/org/apache/http/Header.html\">Header</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/HeaderValueFormatter.html\">HeaderValueFormatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for formatting elements of a header value. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/HeaderValueParser.html\">HeaderValueParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for parsing header values into elements. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/HeaderViewListAdapter.html\">HeaderViewListAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">ListAdapter used when a ListView has header views. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/HeterogeneousExpandableList.html\">HeterogeneousExpandableList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Additional methods that when implemented make an ;; <code><a href=\"/reference/android/widget/ExpandableListAdapter.html\">ExpandableListAdapter</a></code> take advantage of the <code><a href=\"/reference/android/widget/Adapter.html\">Adapter</a></code> view type ;; mechanism. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/HideReturnsTransformationMethod.html\">HideReturnsTransformationMethod</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This transformation method causes any carriage return characters (\\r) ;; to be hidden by displaying them as zero-width non-breaking space ;; characters (). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/HorizontalScrollView.html\">HorizontalScrollView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Layout container for a view hierarchy that can be scrolled by the user, ;; allowing it to be larger than the physical display. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/scheme/HostNameResolver.html\">HostNameResolver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/HostnameVerifier.html\">HostnameVerifier</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The interface to be used to provide hostname verification functionality. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Html.html\">Html</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class processes HTML strings into displayable styled text. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Html.ImageGetter.html\">Html.ImageGetter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Retrieves images for HTML <img> tags. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Html.TagHandler.html\">Html.TagHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Is notified when HTML tags are encountered that the parser does ;; not know how to interpret. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HTTP.html\">HTTP</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants and static helpers related to the HTTP protocol. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/HttpAbstractParamBean.html\">HttpAbstractParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/HttpAuthHandler.html\">HttpAuthHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a request for HTTP authentication. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/HttpClient.html\">HttpClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for an HTTP client. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpClientConnection.html\">HttpClientConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An HTTP connection for use on the client side. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/params/HttpClientParams.html\">HttpClientParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An adaptor for accessing HTTP client parameters in <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpConnection.html\">HttpConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A generic HTTP connection, useful on client and server side. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpConnectionMetrics.html\">HttpConnectionMetrics</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The point of access to the statistics of an <code><a href=\"/reference/org/apache/http/HttpConnection.html\">HttpConnection</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/HttpConnectionMetricsImpl.html\">HttpConnectionMetricsImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of the metrics interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/HttpConnectionParamBean.html\">HttpConnectionParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/HttpConnectionParams.html\">HttpConnectionParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An adaptor for accessing connection parameters in <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpContext.html\">HttpContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A context for executing a request. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/HttpCookie.html\">HttpCookie</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An opaque key-value value pair held by an HTTP client to permit a stateful ;; session with an HTTP server. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpDateGenerator.html\">HttpDateGenerator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Generates a date in the format required by the HTTP protocol. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpDelete.html\">HttpDelete</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP DELETE method ;; <p> ;; The HTTP DELETE method is defined in section 9.7 of ;; <a href=\"http://www.ietf.org/rfc/rfc2616.txt\">RFC2616</a>: ;; <blockquote> ;; The DELETE method requests that the origin server delete the resource ;; identified by the Request-URI. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpEntity.html\">HttpEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An entity that can be sent or received with an HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpEntityEnclosingRequest.html\">HttpEntityEnclosingRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A request with an entity. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.html\">HttpEntityEnclosingRequestBase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of an HTTP request that can be modified. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/HttpEntityWrapper.html\">HttpEntityWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for wrapping entities. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpException.html\">HttpException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals that an HTTP exception has occurred. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpExpectationVerifier.html\">HttpExpectationVerifier</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines an interface to verify whether an incoming HTTP request meets ;; the target server's expectations. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpGet.html\">HttpGet</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP GET method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpHead.html\">HttpHead</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP HEAD method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpHost.html\">HttpHost</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Holds all of the variables needed to describe an HTTP connection to a host. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/HttpHostConnectException.html\">HttpHostConnectException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/java/net/ConnectException.html\">ConnectException</a></code> that specifies the <code><a href=\"/reference/org/apache/http/HttpHost.html\">HttpHost</a></code> that was ;; being connected to. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpInetConnection.html\">HttpInetConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An HTTP connection over the Internet Protocol (IP). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpMessage.html\">HttpMessage</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A generic HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/io/HttpMessageParser.html\">HttpMessageParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Generic message parser interface. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/io/HttpMessageWriter.html\">HttpMessageWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Generic message writer interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpOptions.html\">HttpOptions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP OPTIONS method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a collection of HTTP protocol and framework parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpPost.html\">HttpPost</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP POST method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpProcessor.html\">HttpProcessor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Performs interceptor processing of requests and responses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/HttpProtocolParamBean.html\">HttpProtocolParamBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/params/HttpProtocolParams.html\">HttpProtocolParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements an adaptor around the <code><a href=\"/reference/org/apache/http/params/HttpParams.html\">HttpParams</a></code> interface ;; to simplify manipulation of the HTTP protocol specific parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpPut.html\">HttpPut</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP PUT method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpRequest.html\">HttpRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An HTTP request. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpRequestBase.html\">HttpRequestBase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic implementation of an HTTP request that can be modified. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpRequestExecutor.html\">HttpRequestExecutor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Sends HTTP requests and receives the responses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpRequestFactory.html\">HttpRequestFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A factory for <code><a href=\"/reference/org/apache/http/HttpRequest.html\">HttpRequest</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpRequestHandler.html\">HttpRequestHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpRequestHandlerRegistry.html\">HttpRequestHandlerRegistry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Maintains a map of HTTP request handlers keyed by a request URI pattern. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpRequestHandlerResolver.html\">HttpRequestHandlerResolver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to be implemented by objects that can resolve ;; <code><a href=\"/reference/org/apache/http/protocol/HttpRequestHandler.html\">HttpRequestHandler</a></code> instances by request URI. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpRequestInterceptor.html\">HttpRequestInterceptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Processes a request. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpRequestInterceptorList.html\">HttpRequestInterceptorList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to an ordered list of request interceptors. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/HttpRequestParser.html\">HttpRequestParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/HttpRequestRetryHandler.html\">HttpRequestRetryHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A handler for determining if an HttpRequest should be retried after a ;; recoverable exception during execution. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/HttpRequestWriter.html\">HttpRequestWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpResponse.html\">HttpResponse</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An HTTP response. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-13\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/http/HttpResponseCache.html\">HttpResponseCache</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Caches HTTP and HTTPS responses to the filesystem so they may be reused, ;; saving time and bandwidth. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/HttpResponseException.html\">HttpResponseException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals a non 2xx HTTP response. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpResponseFactory.html\">HttpResponseFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A factory for <code><a href=\"/reference/org/apache/http/HttpResponse.html\">HttpResponse</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpResponseInterceptor.html\">HttpResponseInterceptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Processes a response. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpResponseInterceptorList.html\">HttpResponseInterceptorList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to an ordered list of response interceptors. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/HttpResponseParser.html\">HttpResponseParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/HttpResponseWriter.html\">HttpResponseWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/HttpRetryException.html\">HttpRetryException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">If a HTTP request has to be retried, this exception will be thrown if the ;; request cannot be retried automatically. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/routing/HttpRoute.html\">HttpRoute</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The route for a request. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/routing/HttpRouteDirector.html\">HttpRouteDirector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides directions on establishing a route. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/routing/HttpRoutePlanner.html\">HttpRoutePlanner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates logic to compute a <code><a href=\"/reference/org/apache/http/conn/routing/HttpRoute.html\">HttpRoute</a></code> to a target host. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpServerConnection.html\">HttpServerConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An HTTP connection for use on the server side. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/protocol/HttpService.html\">HttpService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Minimalistic server-side implementation of an HTTP processor. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpStatus.html\">HttpStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants enumerating the HTTP status codes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/HttpsURLConnection.html\">HttpsURLConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code><a href=\"/reference/java/net/HttpURLConnection.html\">HttpURLConnection</a></code> for HTTPS (<a ;; href=\"http://tools.ietf.org/html/rfc2818\">RFC 2818</a>). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpTrace.html\">HttpTrace</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">HTTP TRACE method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/io/HttpTransportMetrics.html\">HttpTransportMetrics</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/HttpTransportMetricsImpl.html\">HttpTransportMetricsImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Default implementation of <code><a href=\"/reference/org/apache/http/io/HttpTransportMetrics.html\">HttpTransportMetrics</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/client/methods/HttpUriRequest.html\">HttpUriRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extended version of the <code><a href=\"/reference/org/apache/http/HttpRequest.html\">HttpRequest</a></code> interface that provides ;; convenience methods to access request properties such as request URI ;; and method type. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/HttpURLConnection.html\">HttpURLConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code><a href=\"/reference/java/net/URLConnection.html\">URLConnection</a></code> for HTTP (<a ;; href=\"http://tools.ietf.org/html/rfc2616\">RFC 2616</a>) used to send and ;; receive data over the web. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/HttpVersion.html\">HttpVersion</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents an HTTP version, as specified in RFC 2616. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_I\">I</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/IBinder.html\">IBinder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base interface for a remotable object, the core part of a lightweight ;; remote procedure call mechanism designed for high performance when ;; performing in-process and cross-process calls. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/IBinder.DeathRecipient.html\">IBinder.DeathRecipient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for receiving a callback when the process hosting an IBinder ;; has gone away. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/IconMarginSpan.html\">IconMarginSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/text/ICUCompat.html\">ICUCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/Identity.html\">Identity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 1. ;; The functionality of this class has been replace by ;; <code><a href=\"/reference/java/security/Principal.html\">Principal</a></code>, <code><a href=\"/reference/java/security/KeyStore.html\">KeyStore</a></code> and the <code>java.security.cert</code> package. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IdentityHashMap.html\">IdentityHashMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">IdentityHashMap is a variant on HashMap which tests equality by reference ;; instead of equality by value. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/IdentityInputStream.html\">IdentityInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A stream for reading from a <code><a href=\"/reference/org/apache/http/io/SessionInputBuffer.html\">session input buffer</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/io/IdentityOutputStream.html\">IdentityOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A stream for writing with an \"identity\" transport encoding. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/IdentityScope.html\">IdentityScope</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 1. ;; The functionality of this class has been replace by ;; <code><a href=\"/reference/java/security/Principal.html\">Principal</a></code>, <code><a href=\"/reference/java/security/KeyStore.html\">KeyStore</a></code> and the <code>java.security.cert</code> package. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/IdleConnectionHandler.html\">IdleConnectionHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A helper class for connection managers to track idle connections. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/IDN.html\">IDN</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Converts internationalized domain names between Unicode and the ASCII Compatible Encoding ;; (ACE) representation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/IInterface.html\">IInterface</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for Binder interfaces. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IllegalAccessError.html\">IllegalAccessError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when the VM notices that a program tries access a field ;; which is not accessible from where it is referenced. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IllegalAccessException.html\">IllegalAccessException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program attempts to access a field or method which is not ;; accessible from the location where the reference is made. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IllegalArgumentException.html\">IllegalArgumentException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a method is invoked with an argument which it can not reasonably ;; deal with. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/IllegalBlockingModeException.html\">IllegalBlockingModeException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalBlockingModeException</code> is thrown when an operation that ;; requires a specific blocking mode is invoked on a channel that is in a ;; different blocking mode. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/IllegalBlockSizeException.html\">IllegalBlockSizeException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception, that is thrown when the data length provided to a block cipher ;; does not match the block size of the cipher. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/IllegalCharsetNameException.html\">IllegalCharsetNameException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalCharsetNameException</code> is thrown when an illegal charset name ;; is encountered. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IllegalFormatCodePointException.html\">IllegalFormatCodePointException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalFormatCodePointException</code> will be thrown if an invalid ;; Unicode code point (defined by <code><a href=\"/reference/java/lang/Character.html#isValidCodePoint(int)\">isValidCodePoint(int)</a></code>) is ;; passed as a parameter to a Formatter. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IllegalFormatConversionException.html\">IllegalFormatConversionException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalFormatConversionException</code> will be thrown when the parameter ;; is incompatible with the corresponding format specifier. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IllegalFormatException.html\">IllegalFormatException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalFormatException</code> is thrown when a format string that ;; contains either an illegal syntax or format specifier is transferred as a ;; parameter. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IllegalFormatFlagsException.html\">IllegalFormatFlagsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalFormatFlagsException</code> will be thrown if the combination of ;; the format flags is illegal. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IllegalFormatPrecisionException.html\">IllegalFormatPrecisionException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalFormatPrecisionException</code> will be thrown if the precision is ;; a negative other than -1 or in other cases where precision is not supported. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/IllegalFormatWidthException.html\">IllegalFormatWidthException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalFormatWidthException</code> will be thrown if the width is a ;; negative value other than -1 or in other cases where a width is not ;; supported. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IllegalMonitorStateException.html\">IllegalMonitorStateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a monitor operation is attempted when the monitor is not in the ;; correct state, for example when a thread attempts to exit a monitor which it ;; does not own. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/IllegalSelectorException.html\">IllegalSelectorException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>IllegalSelectorException</code> is thrown when a call is made to register ;; a channel on a selector that has been created by a different provider. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IllegalStateException.html\">IllegalStateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when an action is attempted at a time when the VM is not ;; in the correct state. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IllegalThreadStateException.html\">IllegalThreadStateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when an operation is attempted which is not possible given the state ;; that the executing thread is in. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ImageButton.html\">ImageButton</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p> ;; Displays a button with an image (instead of text) that can be pressed ;; or clicked by the user. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/ImageFormat.html\">ImageFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/ImageSpan.html\">ImageSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ImageSwitcher.html\">ImageSwitcher</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ImageView.html\">ImageView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Displays an arbitrary image, such as an icon. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ImageView.ScaleType.html\">ImageView.ScaleType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Options for scaling the bounds of an image to the bounds of this view. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IncompatibleClassChangeError.html\">IncompatibleClassChangeError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>IncompatibleClassChangeError</code> is the superclass of all classes which ;; represent errors that occur when inconsistent class files are loaded into ;; the same running image. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/IncompleteAnnotationException.html\">IncompleteAnnotationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that an element of an annotation type was accessed that was added ;; after the type was compiled or serialized. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/beans/IndexedPropertyChangeEvent.html\">IndexedPropertyChangeEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A type of <code><a href=\"/reference/java/beans/PropertyChangeEvent.html\">PropertyChangeEvent</a></code> that indicates that an indexed property ;; has changed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/IndexOutOfBoundsException.html\">IndexOutOfBoundsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program attempts to access a value in an indexable collection ;; using a value which is outside of the range of valid indices. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/Inet4Address.html\">Inet4Address</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An IPv4 address. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/Inet6Address.html\">Inet6Address</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An IPv6 address. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/InetAddress.html\">InetAddress</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An Internet Protocol (IP) address. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/util/InetAddressUtils.html\">InetAddressUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A collection of utilities relating to InetAddresses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/InetSocketAddress.html\">InetSocketAddress</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a socket endpoint described by a IP address and a port ;; number. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/InflateException.html\">InflateException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This exception is thrown by an inflater on error conditions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/Inflater.html\">Inflater</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class decompresses data that was compressed using the <i>DEFLATE</i> ;; algorithm (see <a href=\"http://www.gzip.org/algorithm.txt\">specification</a>). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/InflaterInputStream.html\">InflaterInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides an implementation of <code>FilterInputStream</code> that ;; decompresses data that was compressed using the <i>DEFLATE</i> algorithm ;; (see <a href=\"http://www.gzip.org/algorithm.txt\">specification</a>). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/zip/InflaterOutputStream.html\">InflaterOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>OutputStream</code> filter to decompress data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/InheritableThreadLocal.html\">InheritableThreadLocal</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A thread-local variable whose value is passed from parent to child thread. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/annotation/Inherited.html\">Inherited</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a meta-annotation for indicating that an annotation is automatically ;; inherited. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputBinding.html\">InputBinding</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information given to an <code><a href=\"/reference/android/view/inputmethod/InputMethod.html\">InputMethod</a></code> about a client connecting ;; to it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputConnection.html\">InputConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The InputConnection interface is the communication channel from an ;; <code><a href=\"/reference/android/view/inputmethod/InputMethod.html\">InputMethod</a></code> back to the application that is receiving its ;; input. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputConnectionWrapper.html\">InputConnectionWrapper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>Wrapper class for proxying calls to another InputConnection. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/InputDevice.html\">InputDevice</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the capabilities of a particular input device. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/InputDevice.MotionRange.html\">InputDevice.MotionRange</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides information about the range of values for a particular <code><a href=\"/reference/android/view/MotionEvent.html\">MotionEvent</a></code> axis. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/InputEvent.html\">InputEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Common base class for input events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/InputFilter.html\">InputFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">InputFilters can be attached to <code><a href=\"/reference/android/text/Editable.html\">Editable</a></code>s to constrain the ;; changes that can be made to them. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/InputFilter.AllCaps.html\">InputFilter.AllCaps</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This filter will capitalize all the lower case letters that are added ;; through edits. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/InputFilter.LengthFilter.html\">InputFilter.LengthFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This filter will constrain edits not to make the length of the text ;; greater than the specified length. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/input/InputManager.html\">InputManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides information about input devices and available key layouts. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/hardware/input/InputManager.InputDeviceListener.html\">InputManager.InputDeviceListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listens for changes in input devices. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethod.html\">InputMethod</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The InputMethod interface represents an input method which can generate key ;; events and text, such as digital, email addresses, CJK characters, other ;; language characters, and etc., while handling various input events, and send ;; the text back to the application that requests text input. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethod.SessionCallback.html\">InputMethod.SessionCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethodInfo.html\">InputMethodInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to specify meta information of an input method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethodManager.html\">InputMethodManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Central system API to the overall input method framework (IMF) architecture, ;; which arbitrates interaction between applications and the current input method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/InputMethodService.html\">InputMethodService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">InputMethodService provides a standard implementation of an InputMethod, ;; which final implementations can derive from and customize. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/InputMethodService.InputMethodImpl.html\">InputMethodService.InputMethodImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Concrete implementation of ;; <code><a href=\"/reference/android/inputmethodservice/AbstractInputMethodService.AbstractInputMethodImpl.html\">AbstractInputMethodService.AbstractInputMethodImpl</a></code> that provides ;; all of the standard behavior for an input method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/InputMethodService.InputMethodSessionImpl.html\">InputMethodService.InputMethodSessionImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Concrete implementation of ;; <code><a href=\"/reference/android/inputmethodservice/AbstractInputMethodService.AbstractInputMethodSessionImpl.html\">AbstractInputMethodService.AbstractInputMethodSessionImpl</a></code> that provides ;; all of the standard behavior for an input method session. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/InputMethodService.Insets.html\">InputMethodService.Insets</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about where interesting parts of the input method UI appear. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethodSession.html\">InputMethodSession</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The InputMethodSession interface provides the per-client functionality ;; of <code><a href=\"/reference/android/view/inputmethod/InputMethod.html\">InputMethod</a></code> that is safe to expose to applications. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethodSession.EventCallback.html\">InputMethodSession.EventCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/inputmethod/InputMethodSubtype.html\">InputMethodSubtype</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to specify meta information of a subtype contained in an input method editor ;; (IME). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/InputMismatchException.html\">InputMismatchException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>InputMismatchException</code> is thrown by a scanner to indicate that the ;; next token does not match or is out of range for the type specified in the ;; pattern. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/InputQueue.html\">InputQueue</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An input queue provides a mechanism for an application to receive incoming ;; input events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/InputQueue.Callback.html\">InputQueue.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface to receive notification of when an InputQueue is associated ;; and dissociated with a thread. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/InputSource.html\">InputSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A single input source for an XML entity. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/InputStream.html\">InputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A readable source of bytes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/entity/InputStreamEntity.html\">InputStreamEntity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A streamed entity obtaining content from an <code><a href=\"/reference/java/io/InputStream.html\">InputStream</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/InputStreamReader.html\">InputStreamReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class for turning a byte stream into a character stream. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/InputType.html\">InputType</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Bit definitions for an integer defining the basic content type of text ;; held in an <code><a href=\"/reference/android/text/Editable.html\">Editable</a></code> object. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/InsetDrawable.html\">InsetDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Drawable that insets another Drawable by a specified distance. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/InstantiationError.html\">InstantiationError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when the VM notices that a program tries to create a new ;; instance of a class which has no visible constructors from the location where ;; <code>new</code> is invoked. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/InstantiationException.html\">InstantiationException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a program attempts to access a constructor which is not ;; accessible from the location where the reference is made. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Instrumentation.html\">Instrumentation</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for implementing application instrumentation code. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Instrumentation.ActivityMonitor.html\">Instrumentation.ActivityMonitor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a particular kind of Intent that is being monitored. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/Instrumentation.ActivityResult.html\">Instrumentation.ActivityResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Description of a Activity execution result to return to the original ;; activity. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/InstrumentationInfo.html\">InstrumentationInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information you can retrieve about a particular piece of test ;; instrumentation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/InstrumentationTestCase.html\">InstrumentationTestCase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A test case that has access to <code><a href=\"/reference/android/app/Instrumentation.html\">Instrumentation</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/InstrumentationTestRunner.html\">InstrumentationTestRunner</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code><a href=\"/reference/android/app/Instrumentation.html\">Instrumentation</a></code> that runs various types of <code><a href=\"/reference/junit/framework/TestCase.html\">TestCase</a></code>s against ;; an Android package (application). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/InstrumentationTestSuite.html\">InstrumentationTestSuite</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/junit/framework/TestSuite.html\">TestSuite</a></code> that injects <code><a href=\"/reference/android/app/Instrumentation.html\">Instrumentation</a></code> into ;; <code><a href=\"/reference/android/test/InstrumentationTestCase.html\">InstrumentationTestCase</a></code> before running them. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Int2.html\">Int2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript int2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Int3.html\">Int3</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript int3 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Int4.html\">Int4</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript int4 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/IntBuffer.html\">IntBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer of ints. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Integer.html\">Integer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>int</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Intent.html\">Intent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An intent is an abstract description of an operation to be performed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Intent.FilterComparison.html\">Intent.FilterComparison</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wrapper class holding an Intent and implementing comparisons on it for ;; the purpose of filtering. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Intent.ShortcutIconResource.html\">Intent.ShortcutIconResource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a shortcut/live folder icon resource. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/IntentCompat.html\">IntentCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/content/Intent.html\">Intent</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/IntentFilter.html\">IntentFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Structured description of Intent values to be matched. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/IntentFilter.AuthorityEntry.html\">IntentFilter.AuthorityEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is an entry for a single authority in the Iterator returned by ;; <code><a href=\"/reference/android/content/IntentFilter.html#authoritiesIterator()\">authoritiesIterator()</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/IntentFilter.MalformedMimeTypeException.html\">IntentFilter.MalformedMimeTypeException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This exception is thrown when a given MIME type does not have a valid ;; syntax. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/IntentSender.html\">IntentSender</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A description of an Intent and target action to perform with it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/IntentSender.OnFinished.html\">IntentSender.OnFinished</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for discovering when a send operation has ;; completed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-4\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/IntentSender.SendIntentException.html\">IntentSender.SendIntentException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Exception thrown when trying to send through a PendingIntent that ;; has been canceled or is otherwise no longer able to execute the request. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/IntentService.html\">IntentService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">IntentService is a base class for <code><a href=\"/reference/android/app/Service.html\">Service</a></code>s that handle asynchronous ;; requests (expressed as <code><a href=\"/reference/android/content/Intent.html\">Intent</a></code>s) on demand. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/InterfaceAddress.html\">InterfaceAddress</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Identifies one of a network interface's addresses. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/InternalError.html\">InternalError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when the VM notices that it has gotten into an undefined state. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Interpolator.html\">Interpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/Interpolator.html\">Interpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator defines the rate of change of an animation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Interpolator.Result.html\">Interpolator.Result</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/InterruptedException.html\">InterruptedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a waiting thread is activated before the condition it was waiting ;; for has been satisfied. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/InterruptedIOException.html\">InterruptedIOException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals that a blocking I/O operation has been interrupted. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/channels/InterruptibleChannel.html\">InterruptibleChannel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Channels that implement this interface can be asynchronously closed and ;; interrupted. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/IntEvaluator.html\">IntEvaluator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This evaluator can be used to perform type interpolation between <code>int</code> values. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/InvalidAlgorithmParameterException.html\">InvalidAlgorithmParameterException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>InvalidAlgorithmParameterException</code> indicates the occurrence of ;; invalid algorithm parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/InvalidClassException.html\">InvalidClassException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals a problem during the serialization or or deserialization of an ;; object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/InvalidCredentialsException.html\">InvalidCredentialsException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Authentication credentials required to respond to a authentication ;; challenge are invalid </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/InvalidKeyException.html\">InvalidKeyException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>InvalidKeyException</code> indicates exceptional conditions, caused by an ;; invalid key. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/InvalidKeySpecException.html\">InvalidKeySpecException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when an invalid key specification is ;; encountered. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/InvalidMarkException.html\">InvalidMarkException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>InvalidMarkException</code> is thrown when <code>reset()</code> is called on a ;; buffer, but no mark has been set previously. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/InvalidObjectException.html\">InvalidObjectException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals that, during deserialization, the validation of an object has failed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/InvalidParameterException.html\">InvalidParameterException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>InvalidParameterException</code> indicates exceptional conditions, caused by ;; invalid parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/InvalidParameterSpecException.html\">InvalidParameterSpecException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when an invalid parameter specification is ;; encountered. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/prefs/InvalidPreferencesFormatException.html\">InvalidPreferencesFormatException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An exception to indicate that the input XML file is not well-formed or could ;; not be validated against the appropriate document type (specified by ;; in the <code>Preferences</code>). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/InvalidPropertiesFormatException.html\">InvalidPropertiesFormatException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An <code>InvalidPropertiesFormatException</code> is thrown if loading the XML ;; document defining the properties does not follow the <code>Properties</code> ;; specification. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/InvocationHandler.html\">InvocationHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementors of this interface dispatch methods invoked on proxy instances. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/InvocationTargetException.html\">InvocationTargetException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides a wrapper for an exception thrown by a <code>Method</code> or ;; <code>Constructor</code> invocation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/IOError.html\">IOError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This error is thrown when a severe I/O error has happened. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/IOException.html\">IOException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals a general, I/O-related error. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-10\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/nfc/tech/IsoDep.html\">IsoDep</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to ISO-DEP (ISO 14443-4) properties and I/O operations on a <code><a href=\"/reference/android/nfc/Tag.html\">Tag</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/IsolatedContext.html\">IsolatedContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A mock context which prevents its users from talking to the rest of the device while ;; stubbing enough methods to satify code that tries to talk to other packages. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Iterable.html\">Iterable</a><T></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Instances of classes that implement this interface can be used with ;; the enhanced for loop. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Iterator.html\">Iterator</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An iterator over a sequence of objects, such as a collection. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/spec/IvParameterSpec.html\">IvParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The algorithm parameter specification for an <i>initialization vector</i>. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_J\">J</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/JarEntry.html\">JarEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Represents a single file in a JAR archive together with the manifest ;; attributes and digital signatures associated with it. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/JarException.html\">JarException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This runtime exception is thrown when a problem occurs while reading a JAR ;; file. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/JarFile.html\">JarFile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>JarFile</code> is used to read jar entries and their associated data from ;; jar files. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/JarInputStream.html\">JarInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The input stream from which the JAR file to be read may be fetched. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/JarOutputStream.html\">JarOutputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>JarOutputStream</code> is used to write data in the <code>JarFile</code> ;; format to an arbitrary output stream ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/JarURLConnection.html\">JarURLConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class establishes a connection to a <code>jar:</code> URL using the <code>JAR</code> protocol. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/JavascriptInterface.html\">JavascriptInterface</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Annotation that allows exposing methods to JavaScript. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/JetPlayer.html\">JetPlayer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">JetPlayer provides access to JET content playback and control. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/JetPlayer.OnJetEventListener.html\">JetPlayer.OnJetEventListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Handles the notification when the JET engine generates an event. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/json/JSONArray.html\">JSONArray</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A dense indexed sequence of values. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/json/JSONException.html\">JSONException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown to indicate a problem with the JSON API. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/json/JSONObject.html\">JSONObject</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A modifiable set of name/value mappings. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/JsonReader.html\">JsonReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Reads a JSON (<a href=\"http://www.ietf.org/rfc/rfc4627.txt\">RFC 4627</a>) ;; encoded value as a stream of tokens. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/json/JSONStringer.html\">JSONStringer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implements <code><a href=\"/reference/org/json/JSONObject.html#toString()\">toString()</a></code> and <code><a href=\"/reference/org/json/JSONArray.html#toString()\">toString()</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/JsonToken.html\">JsonToken</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A structure, name or value type in a JSON-encoded string. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/json/JSONTokener.html\">JSONTokener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parses a JSON (<a href=\"http://www.ietf.org/rfc/rfc4627.txt\">RFC 4627</a>) ;; encoded string into the corresponding object. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/JsonWriter.html\">JsonWriter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Writes a JSON (<a href=\"http://www.ietf.org/rfc/rfc4627.txt\">RFC 4627</a>) ;; encoded value to a stream, one token at a time. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/JsPromptResult.html\">JsPromptResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Public class for handling JavaScript prompt requests. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit/JsResult.html\">JsResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An instance of this class is passed as a parameter in various <code><a href=\"/reference/android/webkit/WebChromeClient.html\">WebChromeClient</a></code> action ;; notifications. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_K\">K</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/Key.html\">Key</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Key</code> is the common interface for all keys. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/KeyAgreement.html\">KeyAgreement</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides the functionality for a key exchange protocol. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/KeyAgreementSpi.html\">KeyAgreementSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (<b>SPI</b>) definition for the ;; <code>KeyAgreement</code> class. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/Keyboard.html\">Keyboard</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Loads an XML description of a keyboard and stores the attributes of the keys. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/Keyboard.Key.html\">Keyboard.Key</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for describing the position and characteristics of a single key in the keyboard. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/Keyboard.Row.html\">Keyboard.Row</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Container for keys in the keyboard. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/KeyboardView.html\">KeyboardView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A view that renders a virtual <code><a href=\"/reference/android/inputmethodservice/Keyboard.html\">Keyboard</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/inputmethodservice/KeyboardView.OnKeyboardActionListener.html\">KeyboardView.OnKeyboardActionListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Listener for virtual keyboard events. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyChain.html\">KeyChain</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>KeyChain</code> class provides access to private keys and ;; their corresponding certificate chains in credential storage. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyChainAliasCallback.html\">KeyChainAliasCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The KeyChainAliasCallback is the callback for <code><a href=\"/reference/android/security/KeyChain.html#choosePrivateKeyAlias(android.app.Activity, android.security.KeyChainAliasCallback, java.lang.String[], java.security.Principal[], java.lang.String, int, java.lang.String)\">choosePrivateKeyAlias(Activity, KeyChainAliasCallback, String[], Principal[], String, int, String)</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyChainException.html\">KeyChainException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown on problems accessing the <code><a href=\"/reference/android/security/KeyChain.html\">KeyChain</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/KeyCharacterMap.html\">KeyCharacterMap</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the keys provided by a keyboard device and their associated labels. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/KeyCharacterMap.KeyData.html\">KeyCharacterMap.KeyData</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 11. ;; instead use <code><a href=\"/reference/android/view/KeyCharacterMap.html#getDisplayLabel(int)\">getDisplayLabel(int)</a></code>, ;; <code><a href=\"/reference/android/view/KeyCharacterMap.html#getNumber(int)\">getNumber(int)</a></code> and <code><a href=\"/reference/android/view/KeyCharacterMap.html#get(int, int)\">get(int, int)</a></code>. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/KeyCharacterMap.UnavailableException.html\">KeyCharacterMap.UnavailableException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown by <code><a href=\"/reference/android/view/KeyCharacterMap.html#load(int)\">load(int)</a></code> when a key character map could not be loaded. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/KeyEvent.html\">KeyEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Object used to report key and button events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/KeyEvent.Callback.html\">KeyEvent.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/KeyEvent.DispatcherState.html\">KeyEvent.DispatcherState</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Use with <code><a href=\"/reference/android/view/KeyEvent.html#dispatch(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)\">dispatch(Callback, DispatcherState, Object)</a></code> ;; for more advanced key dispatching, such as long presses. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/KeyEventCompat.html\">KeyEventCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/view/KeyEvent.html\">KeyEvent</a></code> introduced after ;; API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyException.html\">KeyException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyException</code> is the common superclass of all key related exceptions. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyFactory.html\">KeyFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyFactory</code> is an engine class that can be used to translate between ;; public and private key objects and convert keys between their external ;; representation, that can be easily transported and their internal ;; representation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyFactorySpi.html\">KeyFactorySpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyFactorySpi</code> is the Service Provider Interface (SPI) definition for ;; <code><a href=\"/reference/java/security/KeyFactory.html\">KeyFactory</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/Keyframe.html\">Keyframe</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class holds a time/value pair for an animation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/KeyGenerator.html\">KeyGenerator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides the public API for generating symmetric cryptographic ;; keys. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/KeyGeneratorSpi.html\">KeyGeneratorSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (<b>SPI</b>) definition for the ;; <code>KeyGenerator</code> class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/KeyguardManager.html\">KeyguardManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class that can be used to lock and unlock the keyboard. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/KeyguardManager.KeyguardLock.html\">KeyguardManager.KeyguardLock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 13. ;; Use <code><a href=\"/reference/android/view/WindowManager.LayoutParams.html#FLAG_DISMISS_KEYGUARD\">FLAG_DISMISS_KEYGUARD</a></code> ;; and/or <code><a href=\"/reference/android/view/WindowManager.LayoutParams.html#FLAG_SHOW_WHEN_LOCKED\">FLAG_SHOW_WHEN_LOCKED</a></code> ;; instead; this allows you to seamlessly hide the keyguard as your application ;; moves in and out of the foreground and does not require that any special ;; permissions be requested. ;; ;; Handle returned by <code><a href=\"/reference/android/app/KeyguardManager.html#newKeyguardLock(java.lang.String)\">newKeyguardLock(String)</a></code> that allows ;; you to disable / reenable the keyguard. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/KeyguardManager.OnKeyguardExitResult.html\">KeyguardManager.OnKeyguardExitResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback passed to <code><a href=\"/reference/android/app/KeyguardManager.html#exitKeyguardSecurely(android.app.KeyguardManager.OnKeyguardExitResult)\">exitKeyguardSecurely(KeyguardManager.OnKeyguardExitResult)</a></code> to notify ;; caller of result. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/KeyListener.html\">KeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for converting text key events into edit operations on an ;; Editable class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyManagementException.html\">KeyManagementException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyManagementException</code> is a general exception, thrown to indicate an ;; exception during processing an operation concerning key management. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/KeyManager.html\">KeyManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This is the interface to implement in order to mark a class as a JSSE key ;; managers so that key managers can be easily grouped. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/KeyManagerFactory.html\">KeyManagerFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The public API for <code>KeyManagerFactory</code> implementations. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/KeyManagerFactorySpi.html\">KeyManagerFactorySpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service Provider Interface</i> (SPI) for the ;; <code>KeyManagerFactory</code> class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyPair.html\">KeyPair</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyPair</code> is a container for a public key and a private key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyPairGenerator.html\">KeyPairGenerator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyPairGenerator</code> is an engine class which is capable of generating a ;; private key and its related public key utilizing the algorithm it was ;; initialized with. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyPairGeneratorSpec.html\">KeyPairGeneratorSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This provides the required parameters needed for initializing the ;; <code>KeyPairGenerator</code> that works with ;; <a href=\"/guide/topics/security/keystore.html\">Android KeyStore ;; facility</a>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyPairGeneratorSpec.Builder.html\">KeyPairGeneratorSpec.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder class for <code><a href=\"/reference/android/security/KeyPairGeneratorSpec.html\">KeyPairGeneratorSpec</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyPairGeneratorSpi.html\">KeyPairGeneratorSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyPairGeneratorSpi</code> is the Service Provider Interface (SPI) ;; definition for <code><a href=\"/reference/java/security/KeyPairGenerator.html\">KeyPairGenerator</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyRep.html\">KeyRep</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyRep</code> is a standardized representation for serialized <code><a href=\"/reference/java/security/Key.html\">Key</a></code> ;; objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyRep.Type.html\">KeyRep.Type</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Type</code> enumerates the supported key types. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/KeySpec.html\">KeySpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The marker interface for key specifications. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.html\">KeyStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyStore</code> is responsible for maintaining cryptographic keys and their ;; owners. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.Builder.html\">KeyStore.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Builder</code> is used to construct new instances of <code>KeyStore</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.CallbackHandlerProtection.html\">KeyStore.CallbackHandlerProtection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>CallbackHandlerProtection</code> is a <code>ProtectionParameter</code> that ;; encapsulates a <code><a href=\"/reference/javax/security/auth/callback/CallbackHandler.html\">CallbackHandler</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.Entry.html\">KeyStore.Entry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Entry</code> is the common marker interface for a <code>KeyStore</code> ;; entry. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.LoadStoreParameter.html\">KeyStore.LoadStoreParameter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>LoadStoreParameter</code> represents a parameter that specifies how a ;; <code>KeyStore</code> can be loaded and stored. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.PasswordProtection.html\">KeyStore.PasswordProtection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>PasswordProtection</code> is a <code>ProtectionParameter</code> that protects ;; a <code>KeyStore</code> using a password. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.PrivateKeyEntry.html\">KeyStore.PrivateKeyEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>PrivateKeyEntry</code> represents a <code>KeyStore</code> entry that ;; holds a private key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.ProtectionParameter.html\">KeyStore.ProtectionParameter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>ProtectionParameter</code> is a marker interface for protection ;; parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.SecretKeyEntry.html\">KeyStore.SecretKeyEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>SecretKeyEntry</code> represents a <code>KeyStore</code> entry that ;; holds a secret key. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStore.TrustedCertificateEntry.html\">KeyStore.TrustedCertificateEntry</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>TrustedCertificateEntry</code> represents a <code>KeyStore</code> entry that ;; holds a trusted certificate. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/KeyStoreBuilderParameters.html\">KeyStoreBuilderParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters for <code>KeyManager</code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStoreException.html\">KeyStoreException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyStoreException</code> is a general <code>KeyStore</code> exception. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyStoreParameter.html\">KeyStoreParameter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This provides the optional parameters that can be specified for ;; <code>KeyStore</code> entries that work with ;; <a href=\"/guide/topics/security/keystore.html\">Android KeyStore ;; facility</a>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/security/KeyStoreParameter.Builder.html\">KeyStoreParameter.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder class for <code><a href=\"/reference/android/security/KeyStoreParameter.html\">KeyStoreParameter</a></code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/KeyStoreSpi.html\">KeyStoreSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>KeyStoreSpi</code> is the Service Provider Interface (SPI) definition for ;; <code><a href=\"/reference/java/security/KeyStore.html\">KeyStore</a></code>. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_L\">L</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/pm/LabeledIntent.html\">LabeledIntent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A special subclass of Intent that can have a custom label/icon ;; associated with it. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/util/LangUtils.html\">LangUtils</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A set of utility methods to help produce consistent ;; <code><a href=\"/reference/java/lang/Object.html#equals(java.lang.Object)\">equals</a></code> and <code><a href=\"/reference/java/lang/Object.html#hashCode()\">hashCode</a></code> methods. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-2\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/suitebuilder/annotation/LargeTest.html\">LargeTest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Marks a test that should run as part of the large tests. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/acl/LastOwnerException.html\">LastOwnerException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The exception that is thrown when an attempt is made to remove the ;; the last <code>Owner</code> from an <code>Owner</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/LauncherActivity.html\">LauncherActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Displays a list of all activities which can be performed ;; for a given intent. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/LauncherActivity.IconResizer.html\">LauncherActivity.IconResizer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Utility class to resize icons to match default icon size. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/LauncherActivity.ListItem.html\">LauncherActivity.ListItem</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An item in the list ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/entity/LaxContentLengthStrategy.html\">LaxContentLengthStrategy</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The lax implementation of the content length strategy. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/LayerDrawable.html\">LayerDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Drawable that manages an array of other Drawables. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/scheme/LayeredSocketFactory.html\">LayeredSocketFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/org/apache/http/conn/scheme/SocketFactory.html\">SocketFactory</a></code> for layered sockets (SSL/TLS). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/LayerRasterizer.html\">LayerRasterizer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Layout.html\">Layout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A base class that manages text layout in visual elements on ;; the screen. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Layout.Alignment.html\">Layout.Alignment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/Layout.Directions.html\">Layout.Directions</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Stores information about bidirectional (left-to-right or right-to-left) ;; text within the layout of a line. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/LayoutAnimationController.html\">LayoutAnimationController</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A layout animation controller is used to animated a layout's, or a view ;; group's, children. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/LayoutAnimationController.AnimationParameters.html\">LayoutAnimationController.AnimationParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The set of parameters that has to be attached to each view contained in ;; the view group animated by the layout animation controller. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/LayoutInflater.html\">LayoutInflater</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Instantiates a layout XML file into its corresponding <code><a href=\"/reference/android/view/View.html\">View</a></code> ;; objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/LayoutInflater.Factory.html\">LayoutInflater.Factory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/LayoutInflater.Factory2.html\">LayoutInflater.Factory2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/LayoutInflater.Filter.html\">LayoutInflater.Filter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Hook to allow clients of the LayoutInflater to restrict the set of Views that are allowed ;; to be inflated. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/LayoutTransition.html\">LayoutTransition</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class enables automatic animations on layout changes in ViewGroup objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/animation/LayoutTransition.TransitionListener.html\">LayoutTransition.TransitionListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface is used for listening to starting and ending events for transitions. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/cert/LDAPCertStoreParameters.html\">LDAPCertStoreParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameters to initialize a LDAP <code>CertStore</code> instance. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LeadingMarginSpan.html\">LeadingMarginSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A paragraph style affecting the leading margin. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LeadingMarginSpan.LeadingMarginSpan2.html\">LeadingMarginSpan.LeadingMarginSpan2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An extended version of <code><a href=\"/reference/android/text/style/LeadingMarginSpan.html\">LeadingMarginSpan</a></code>, which allows ;; the implementor to specify the number of lines of text to which ;; this object is attached that the \"first line of paragraph\" margin ;; width will be applied to. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LeadingMarginSpan.Standard.html\">LeadingMarginSpan.Standard</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The standard implementation of LeadingMarginSpan, which adjusts the ;; margin but does not do any rendering. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/Level.html\">Level</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Level</code> objects are used to indicate the level of logging. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/drawable/LevelListDrawable.html\">LevelListDrawable</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A resource that manages a number of alternate Drawables, each assigned a maximum numerical value. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/LexicalHandler.html\">LexicalHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 extension handler for lexical events. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/LightingColorFilter.html\">LightingColorFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/LinearGradient.html\">LinearGradient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/animation/LinearInterpolator.html\">LinearInterpolator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interpolator where the rate of change is constant ;; ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/LinearLayout.html\">LinearLayout</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A Layout that arranges its children in a single column or a single row. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/LinearLayout.LayoutParams.html\">LinearLayout.LayoutParams</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Per-child layout information associated with ViewLinearLayout. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LineBackgroundSpan.html\">LineBackgroundSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/LineFormatter.html\">LineFormatter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for formatting elements of the HEAD section of an HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LineHeightSpan.html\">LineHeightSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LineHeightSpan.WithDensity.html\">LineHeightSpan.WithDensity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/LineNumberInputStream.html\">LineNumberInputStream</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 1. ;; Use <code><a href=\"/reference/java/io/LineNumberReader.html\">LineNumberReader</a></code> ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/io/LineNumberReader.html\">LineNumberReader</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Wraps an existing <code><a href=\"/reference/java/io/Reader.html\">Reader</a></code> and counts the line terminators encountered ;; while reading the data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/message/LineParser.html\">LineParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for parsing lines in the HEAD section of an HTTP message. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/LinkageError.html\">LinkageError</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>LinkageError</code> is the superclass of all error classes that occur when ;; loading and linking class files. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-9\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/LinkedBlockingDeque.html\">LinkedBlockingDeque</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An optionally-bounded <code><a href=\"/reference/java/util/concurrent/BlockingDeque.html\">blocking deque</a></code> based on ;; linked nodes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/LinkedBlockingQueue.html\">LinkedBlockingQueue</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An optionally-bounded <code><a href=\"/reference/java/util/concurrent/BlockingQueue.html\">blocking queue</a></code> based on ;; linked nodes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/LinkedHashMap.html\">LinkedHashMap</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">LinkedHashMap is an implementation of <code><a href=\"/reference/java/util/Map.html\">Map</a></code> that guarantees iteration order. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/LinkedHashSet.html\">LinkedHashSet</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">LinkedHashSet is a variant of HashSet. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/LinkedList.html\">LinkedList</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">LinkedList is an implementation of <code><a href=\"/reference/java/util/List.html\">List</a></code>, backed by a doubly-linked list. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/util/Linkify.html\">Linkify</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Linkify take a piece of text and a regular expression and turns all of the ;; regex matches in the text into clickable links. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/util/Linkify.MatchFilter.html\">Linkify.MatchFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MatchFilter enables client code to have more control over ;; what is allowed to match and become a link, and what is not. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/util/Linkify.TransformFilter.html\">Linkify.TransformFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">TransformFilter enables client code to have more control over ;; how matched patterns are represented as URLs. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/LinkMovementMethod.html\">LinkMovementMethod</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A movement method that traverses links in the text buffer and scrolls if necessary. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/List.html\">List</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>List</code> is a collection which maintains an ordering for its elements. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ListActivity.html\">ListActivity</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An activity that displays a list of items by binding to a data source such as ;; an array or Cursor, and exposes event handlers when the user selects an item. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ListAdapter.html\">ListAdapter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Extended <code><a href=\"/reference/android/widget/Adapter.html\">Adapter</a></code> that is the bridge between a <code><a href=\"/reference/android/widget/ListView.html\">ListView</a></code> ;; and the data that backs the list. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/ListFragment.html\">ListFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A fragment that displays a list of items by binding to a data source such as ;; an array or Cursor, and exposes event handlers when the user selects an item. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/ListFragment.html\">ListFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/app/ListFragment.html\">ListFragment</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/ListIterator.html\">ListIterator</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An ListIterator is used to sequence over a List of objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ListPopupWindow.html\">ListPopupWindow</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A ListPopupWindow anchors itself to a host view and displays a ;; list of choices. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/preference/ListPreference.html\">ListPreference</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code><a href=\"/reference/android/preference/Preference.html\">Preference</a></code> that displays a list of entries as ;; a dialog. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/ListResourceBundle.html\">ListResourceBundle</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>ListResourceBundle</code> is the abstract superclass of classes which provide ;; resources by implementing the <code>getContents()</code> method to return ;; the list of resources. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ListView.html\">ListView</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A view that shows items in a vertically scrolling list. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/ListView.FixedViewInfo.html\">ListView.FixedViewInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A class that represents a fixed view in a list, for example a header at the top ;; or a footer at the bottom. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/LiveFolders.html\">LiveFolders</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 14. ;; Live folders are no longer supported by Android. These have been ;; replaced by the new ;; <a href=\"/guide/topics/appwidgets/index.html#collections\">AppWidget Collection</a> ;; APIs introduced in <code><a href=\"/reference/android/os/Build.VERSION_CODES.html#HONEYCOMB\">HONEYCOMB</a></code>. These provide ;; all of the features of live folders plus many more. The use of live folders is greatly ;; discouraged because of security issues they introduce -- publishing a live folder requires ;; making all data show for the live folder available to all applications with no ;; permissions protecting it. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Loader.html\">Loader</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract class that performs asynchronous loading of data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/Loader.html\">Loader</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/content/Loader.html\">Loader</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Loader.ForceLoadContentObserver.html\">Loader.ForceLoadContentObserver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An implementation of a ContentObserver that takes care of connecting ;; it to the Loader to have the loader re-load its data when the observer ;; is told it has changed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/Loader.ForceLoadContentObserver.html\">Loader.ForceLoadContentObserver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An implementation of a ContentObserver that takes care of connecting ;; it to the Loader to have the loader re-load its data when the observer ;; is told it has changed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Loader.OnLoadCanceledListener.html\">Loader.OnLoadCanceledListener</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface that is implemented to discover when a Loader has been canceled ;; before it finished loading its data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/content/Loader.OnLoadCompleteListener.html\">Loader.OnLoadCompleteListener</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface that is implemented to discover when a Loader has finished ;; loading its data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/Loader.OnLoadCompleteListener.html\">Loader.OnLoadCompleteListener</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface that is implemented to discover when a Loader has finished ;; loading its data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/LoaderManager.html\">LoaderManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface associated with an <code><a href=\"/reference/android/app/Activity.html\">Activity</a></code> or <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> for managing ;; one or more <code><a href=\"/reference/android/content/Loader.html\">Loader</a></code> instances associated with it. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/LoaderManager.html\">LoaderManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library support version of the framework's <code><a href=\"/reference/android/app/LoaderManager.html\">LoaderManager</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/LoaderManager.LoaderCallbacks.html\">LoaderManager.LoaderCallbacks</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for a client to interact with the manager. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/app/LoaderManager.LoaderCallbacks.html\">LoaderManager.LoaderCallbacks</a><D></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for a client to interact with the manager. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/LoaderTestCase.html\">LoaderTestCase</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A convenience class for testing <code><a href=\"/reference/android/content/Loader.html\">Loader</a></code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/LocalActivityManager.html\">LocalActivityManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><em> ;; This class was deprecated ;; in API level 13. ;; Use the new <code><a href=\"/reference/android/app/Fragment.html\">Fragment</a></code> and <code><a href=\"/reference/android/app/FragmentManager.html\">FragmentManager</a></code> APIs ;; instead; these are also ;; available on older platforms through the Android compatibility package. ;; </em> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/content/LocalBroadcastManager.html\">LocalBroadcastManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper to register for and send broadcasts of Intents to local objects ;; within your process. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Locale.html\">Locale</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Locale</code> represents a language/country/variant combination. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-17\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/LocaleSpan.html\">LocaleSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Changes the <code><a href=\"/reference/java/util/Locale.html\">Locale</a></code> of the text to which the span is attached. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/LocalServerSocket.html\">LocalServerSocket</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">non-standard class for creating inbound UNIX-domain socket ;; on the Android platform, this is created in the Linux non-filesystem ;; namespace. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/LocalSocket.html\">LocalSocket</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Creates a (non-server) socket in the UNIX-domain namespace. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/LocalSocketAddress.html\">LocalSocketAddress</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A UNIX-domain (AF_LOCAL) socket address. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/LocalSocketAddress.Namespace.html\">LocalSocketAddress.Namespace</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The namespace that this address exists in. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/Location.html\">Location</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A data class representing a geographic location. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/LocationListener.html\">LocationListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used for receiving notifications from the LocationManager when ;; the location has changed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/LocationManager.html\">LocationManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides access to the system location services. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/location/LocationProvider.html\">LocationProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An abstract superclass for location providers. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/Locator.html\">Locator</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for associating a SAX event with a document location. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/Locator2.html\">Locator2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 extension to augment the entity information provided ;; though a <code><a href=\"/reference/org/xml/sax/Locator.html\">Locator</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/ext/Locator2Impl.html\">Locator2Impl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SAX2 extension helper for holding additional Entity information, ;; implementing the <code><a href=\"/reference/org/xml/sax/ext/Locator2.html\">Locator2</a></code> interface. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/xml/sax/helpers/LocatorImpl.html\">LocatorImpl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provide an optional convenience implementation of Locator. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/Lock.html\">Lock</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Lock</code> implementations provide more extensive locking ;; operations than can be obtained using <code>synchronized</code> methods ;; and statements. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/concurrent/locks/LockSupport.html\">LockSupport</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Basic thread blocking primitives for creating locks and other ;; synchronization classes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/Log.html\">Log</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">API for sending log output. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/Logger.html\">Logger</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Loggers are used to log records to a variety of destinations such as log files or ;; the console. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/LoggingMXBean.html\">LoggingMXBean</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>LoggingMXBean</code> is the management interface for the logging sub-system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/LoggingPermission.html\">LoggingPermission</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Legacy security code; do not use. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/LoggingSessionInputBuffer.html\">LoggingSessionInputBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Logs all data read to the wire LOG. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/impl/conn/LoggingSessionOutputBuffer.html\">LoggingSessionOutputBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Logs all data written to the wire LOG. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/security/auth/login/LoginException.html\">LoginException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for exceptions that are thrown when a login error occurs. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/LoginFilter.html\">LoginFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Abstract class for filtering login-related text (user names and passwords) ;; ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/LoginFilter.PasswordFilterGMail.html\">LoginFilter.PasswordFilterGMail</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This filter is compatible with GMail passwords which restricts characters to ;; the Latin-1 (ISO8859-1) char set. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/LoginFilter.UsernameFilterGeneric.html\">LoginFilter.UsernameFilterGeneric</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This filter rejects characters in the user name that are not compatible with Google login. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/LoginFilter.UsernameFilterGMail.html\">LoginFilter.UsernameFilterGMail</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This filter rejects characters in the user name that are not compatible with GMail ;; account creation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/LogManager.html\">LogManager</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>LogManager</code> is used to maintain configuration properties of the ;; logging framework, and to manage a hierarchical namespace of all named ;; <code>Logger</code> objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/LogPrinter.html\">LogPrinter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Implementation of a <code><a href=\"/reference/android/util/Printer.html\">Printer</a></code> that sends its output ;; to the system log. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/LogRecord.html\">LogRecord</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>LogRecord</code> object represents a logging request. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Long.html\">Long</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The wrapper for the primitive type <code>long</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Long2.html\">Long2</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript long2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Long3.html\">Long3</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript long3 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Long4.html\">Long4</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript long4 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/LongBuffer.html\">LongBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A buffer of longs. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/util/LongSparseArray.html\">LongSparseArray</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SparseArray mapping longs to Objects. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/LongSparseArray.html\">LongSparseArray</a><E></td> ;; <td class=\"jd-descrcol\" width=\"100%\">SparseArray mapping longs to Objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Looper.html\">Looper</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class used to run a message loop for a thread. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/util/LruCache.html\">LruCache</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Static library version of <code><a href=\"/reference/android/util/LruCache.html\">LruCache</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-12\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/LruCache.html\">LruCache</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A cache that holds strong references to a limited number of values. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSException.html\">LSException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Parser or write operations may throw an <code>LSException</code> if the ;; processing is stopped. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSInput.html\">LSInput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface represents an input source for data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSOutput.html\">LSOutput</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This interface represents an output destination for data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSParser.html\">LSParser</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface to an object that is able to build, or augment, a DOM tree ;; from various input sources. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSParserFilter.html\">LSParserFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>LSParserFilter</code>s provide applications the ability to examine ;; nodes as they are being constructed while parsing. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSResourceResolver.html\">LSResourceResolver</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>LSResourceResolver</code> provides a way for applications to ;; redirect references to external resources. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/w3c/dom/ls/LSSerializer.html\">LSSerializer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>LSSerializer</code> provides an API for serializing (writing) a ;; DOM document out into XML. </td> ;; </tr> ;; ;; ;; </table> ;; ;; ;; <h2 id=\"letter_M\">M</h2> ;; <table class=\"jd-sumtable\"> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/Mac.html\">Mac</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class provides the public API for <i>Message Authentication Code</i> ;; (MAC) algorithms. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/crypto/MacSpi.html\">MacSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <i>Service-Provider Interface</i> (<b>SPI</b>) definition for the <code>Mac</code> class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/net/MailTo.html\">MailTo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MailTo URL parser ;; ;; This class parses a mailto scheme URL and then can be queried for ;; the parsed parameters. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/auth/MalformedChallengeException.html\">MalformedChallengeException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals that authentication challenge is in some way invalid or ;; illegal in the given context </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/MalformedChunkCodingException.html\">MalformedChunkCodingException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals a malformed chunked stream. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/cookie/MalformedCookieException.html\">MalformedCookieException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Signals that a cookie is in some way invalid or illegal in a given ;; context </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/charset/MalformedInputException.html\">MalformedInputException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>MalformedInputException</code> is thrown when a malformed input is ;; encountered, for example if a byte sequence is illegal for the given charset. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/util/MalformedJsonException.html\">MalformedJsonException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Thrown when a reader encounters malformed JSON. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/MalformedParameterizedTypeException.html\">MalformedParameterizedTypeException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that a malformed parameterized type has been encountered by a ;; reflective method. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/net/MalformedURLException.html\">MalformedURLException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This exception is thrown when a program attempts to create an URL from an ;; incorrect specification. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/conn/ManagedClientConnection.html\">ManagedClientConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A client-side connection with advanced connection logic. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/javax/net/ssl/ManagerFactoryParameters.html\">ManagerFactoryParameters</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The marker interface for key manager factory parameters. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/Manifest.html\">Manifest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/jar/Manifest.html\">Manifest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The <code>Manifest</code> class is used to obtain attribute information for a ;; <code>JarFile</code> and its entries. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/Manifest.permission.html\">Manifest.permission</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/Manifest.permission_group.html\">Manifest.permission_group</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Map.html\">Map</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>Map</code> is a data structure consisting of a set of keys and values ;; in which each key is mapped to a single value. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/Map.Entry.html\">Map.Entry</a><K, V></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>Map.Entry</code> is a key/value mapping contained in a <code>Map</code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/nio/MappedByteBuffer.html\">MappedByteBuffer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>MappedByteBuffer</code> is a special kind of direct byte buffer which maps a ;; region of file to memory. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/MarginLayoutParamsCompat.html\">MarginLayoutParamsCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing API features in ;; <code><a href=\"/reference/android/view/ViewGroup.MarginLayoutParams.html\">MarginLayoutParams</a></code> added after API 4. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/MaskFilter.html\">MaskFilter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MaskFilter is the base class for object that perform transformations on ;; an alpha-channel mask before drawing it. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/MaskFilterSpan.html\">MaskFilterSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/regex/Matcher.html\">Matcher</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The result of applying a <code>Pattern</code> to a given input. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/regex/MatchResult.html\">MatchResult</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Holds the results of a successful match of a <code><a href=\"/reference/java/util/regex/Pattern.html\">Pattern</a></code> against a ;; given string. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/Math.html\">Math</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class Math provides basic math constants and operations such as trigonometric ;; functions, hyperbolic functions, exponential, logarithms, etc. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/math/MathContext.html\">MathContext</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Immutable objects describing settings such as rounding mode and digit ;; precision for the numerical operations provided by class <code><a href=\"/reference/java/math/BigDecimal.html\">BigDecimal</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Matrix.html\">Matrix</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Matrix class holds a 3x3 matrix for transforming coordinates. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/opengl/Matrix.html\">Matrix</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Matrix math utilities. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/graphics/Matrix.ScaleToFit.html\">Matrix.ScaleToFit</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Controlls how the src rect should align into the dst rect for ;; setRectToRect(). </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Matrix2f.html\">Matrix2f</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript rs_matrix2x2 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Matrix3f.html\">Matrix3f</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript rs_matrix3x3 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/renderscript/Matrix4f.html\">Matrix4f</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for exposing the native RenderScript rs_matrix4x4 type back to the Android system. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/MatrixCursor.html\">MatrixCursor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A mutable cursor implementation backed by an array of <code>Object</code>s. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/MatrixCursor.RowBuilder.html\">MatrixCursor.RowBuilder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builds a row, starting from the left-most column and adding one column ;; value at a time. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaActionSound.html\">MediaActionSound</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><p>A class for producing sounds that match those produced by various actions ;; taken by the media and camera APIs. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodec.html\">MediaCodec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaCodec class can be used to access low-level media codec, i.e. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodec.BufferInfo.html\">MediaCodec.BufferInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Per buffer metadata includes an offset and size specifying ;; the range of valid data in the associated codec buffer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodec.CryptoException.html\">MediaCodec.CryptoException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodec.CryptoInfo.html\">MediaCodec.CryptoInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Metadata describing the structure of a (at least partially) encrypted ;; input sample. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodecInfo.html\">MediaCodecInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides information about a given media codec available on the device. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodecInfo.CodecCapabilities.html\">MediaCodecInfo.CodecCapabilities</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates the capabilities of a given codec component. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodecInfo.CodecProfileLevel.html\">MediaCodecInfo.CodecProfileLevel</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates the profiles available for a codec component. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCodecList.html\">MediaCodecList</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Allows you to enumerate available codecs, each specified as a <code><a href=\"/reference/android/media/MediaCodecInfo.html\">MediaCodecInfo</a></code> object, ;; find a codec supporting a given format and query the capabilities ;; of a given codec. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaControlIntent.html\">MediaControlIntent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for media control intents. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/MediaController.html\">MediaController</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A view containing controls for a MediaPlayer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/widget/MediaController.MediaPlayerControl.html\">MediaController.MediaPlayerControl</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCrypto.html\">MediaCrypto</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaCrypto class can be used in conjunction with <code><a href=\"/reference/android/media/MediaCodec.html\">MediaCodec</a></code> ;; to decode encrypted media data. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaCryptoException.html\">MediaCryptoException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Exception thrown if MediaCrypto object could not be instantiated for ;; whatever reason. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaDrm.html\">MediaDrm</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaDrm can be used to obtain keys for decrypting protected media streams, in ;; conjunction with <code><a href=\"/reference/android/media/MediaCrypto.html\">MediaCrypto</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaDrm.CryptoSession.html\">MediaDrm.CryptoSession</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">In addition to supporting decryption of DASH Common Encrypted Media, the ;; MediaDrm APIs provide the ability to securely deliver session keys from ;; an operator's session key server to a client device, based on the factory-installed ;; root of trust, and then perform encrypt, decrypt, sign and verify operations ;; with the session key on arbitrary user data. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaDrm.KeyRequest.html\">MediaDrm.KeyRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains the opaque data an app uses to request keys from a license server ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaDrm.OnEventListener.html\">MediaDrm.OnEventListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a drm event ;; occurs ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaDrm.ProvisionRequest.html\">MediaDrm.ProvisionRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains the opaque data an app uses to request a certificate from a provisioning ;; server ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaDrmException.html\">MediaDrmException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for MediaDrm exceptions ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaExtractor.html\">MediaExtractor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaExtractor facilitates extraction of demuxed, typically encoded, media data ;; from a data source. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaFormat.html\">MediaFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Encapsulates the information describing the format of media data, ;; be it audio or video. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaItemMetadata.html\">MediaItemMetadata</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Constants for specifying metadata about a media item as a <code><a href=\"/reference/android/os/Bundle.html\">Bundle</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaItemStatus.html\">MediaItemStatus</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the playback status of a media item. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaItemStatus.Builder.html\">MediaItemStatus.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder for <code><a href=\"/reference/android/support/v7/media/MediaItemStatus.html\">media item status objects</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-10\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaMetadataRetriever.html\">MediaMetadataRetriever</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaMetadataRetriever class provides a unified interface for retrieving ;; frame and meta data from an input media file. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaMuxer.html\">MediaMuxer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaMuxer facilitates muxing elementary streams. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-18\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaMuxer.OutputFormat.html\">MediaMuxer.OutputFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the output format. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.html\">MediaPlayer</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaPlayer class can be used to control playback ;; of audio/video files and streams. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnBufferingUpdateListener.html\">MediaPlayer.OnBufferingUpdateListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition of a callback to be invoked indicating buffering ;; status of a media resource being streamed over the network. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnCompletionListener.html\">MediaPlayer.OnCompletionListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when playback of ;; a media source has completed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnErrorListener.html\">MediaPlayer.OnErrorListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition of a callback to be invoked when there ;; has been an error during an asynchronous operation (other errors ;; will throw exceptions at method call time). </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnInfoListener.html\">MediaPlayer.OnInfoListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition of a callback to be invoked to communicate some ;; info and/or warning about the media or its playback. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnPreparedListener.html\">MediaPlayer.OnPreparedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when the media ;; source is ready for playback. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnSeekCompleteListener.html\">MediaPlayer.OnSeekCompleteListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition of a callback to be invoked indicating ;; the completion of a seek operation. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnTimedTextListener.html\">MediaPlayer.OnTimedTextListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition of a callback to be invoked when a ;; timed text is available for display. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.OnVideoSizeChangedListener.html\">MediaPlayer.OnVideoSizeChangedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition of a callback to be invoked when the ;; video size is first known or updated ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaPlayer.TrackInfo.html\">MediaPlayer.TrackInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Class for MediaPlayer to return each audio/video/subtitle track's metadata. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.html\">MediaRecorder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Used to record audio and video. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.AudioEncoder.html\">MediaRecorder.AudioEncoder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the audio encoding. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.AudioSource.html\">MediaRecorder.AudioSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the audio source. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.OnErrorListener.html\">MediaRecorder.OnErrorListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when an error ;; occurs while recording. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.OnInfoListener.html\">MediaRecorder.OnInfoListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when an error ;; occurs while recording. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.OutputFormat.html\">MediaRecorder.OutputFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the output format. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.VideoEncoder.html\">MediaRecorder.VideoEncoder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the video encoding. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-3\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRecorder.VideoSource.html\">MediaRecorder.VideoSource</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines the video source. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/MediaRouteActionProvider.html\">MediaRouteActionProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteActionProvider.html\">MediaRouteActionProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The media route action provider displays a <code><a href=\"/reference/android/support/v7/app/MediaRouteButton.html\">media route button</a></code> ;; in the application's <code><a href=\"/reference/android/support/v7/app/ActionBar.html\">ActionBar</a></code> to allow the user to select routes and ;; to control the currently selected route. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/app/MediaRouteButton.html\">MediaRouteButton</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteButton.html\">MediaRouteButton</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The media route button allows the user to select routes and to control the ;; currently selected route. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteChooserDialog.html\">MediaRouteChooserDialog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements the route chooser dialog for <code><a href=\"/reference/android/support/v7/media/MediaRouter.html\">MediaRouter</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteChooserDialogFragment.html\">MediaRouteChooserDialogFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Media route chooser dialog fragment. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteControllerDialog.html\">MediaRouteControllerDialog</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class implements the route controller dialog for <code><a href=\"/reference/android/support/v7/media/MediaRouter.html\">MediaRouter</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteControllerDialogFragment.html\">MediaRouteControllerDialogFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Media route controller dialog fragment. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteDescriptor.html\">MediaRouteDescriptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the properties of a route. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteDescriptor.Builder.html\">MediaRouteDescriptor.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder for <code><a href=\"/reference/android/support/v7/media/MediaRouteDescriptor.html\">media route descriptors</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteDialogFactory.html\">MediaRouteDialogFactory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The media route dialog factory is responsible for creating the media route ;; chooser and controller dialogs as needed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/app/MediaRouteDiscoveryFragment.html\">MediaRouteDiscoveryFragment</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Media route discovery fragment. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteDiscoveryRequest.html\">MediaRouteDiscoveryRequest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the kinds of routes that the media router would like to discover ;; and whether to perform active scanning. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProvider.html\">MediaRouteProvider</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Media route providers are used to publish additional media routes for ;; use within an application. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProvider.Callback.html\">MediaRouteProvider.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback which is invoked when route information becomes available or changes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProvider.ProviderMetadata.html\">MediaRouteProvider.ProviderMetadata</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes properties of the route provider's implementation. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProvider.RouteController.html\">MediaRouteProvider.RouteController</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides control over a particular route. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProviderDescriptor.html\">MediaRouteProviderDescriptor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the state of a media route provider and the routes that it publishes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProviderDescriptor.Builder.html\">MediaRouteProviderDescriptor.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder for <code><a href=\"/reference/android/support/v7/media/MediaRouteProviderDescriptor.html\">media route provider descriptors</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteProviderService.html\">MediaRouteProviderService</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Base class for media route provider services. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.html\">MediaRouter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaRouter allows applications to control the routing of media channels ;; and streams from the current device to external speakers and destination devices. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouter.html\">MediaRouter</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaRouter allows applications to control the routing of media channels ;; and streams from the current device to external speakers and destination devices. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.Callback.html\">MediaRouter.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for receiving events about media routing changes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouter.Callback.html\">MediaRouter.Callback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for receiving events about media routing changes. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouter.ControlRequestCallback.html\">MediaRouter.ControlRequestCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback which is invoked with the result of a media control request. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouter.ProviderInfo.html\">MediaRouter.ProviderInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides information about a media route provider. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.RouteCategory.html\">MediaRouter.RouteCategory</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Definition of a category of routes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.RouteGroup.html\">MediaRouter.RouteGroup</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a route that consists of multiple other routes in a group. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.RouteInfo.html\">MediaRouter.RouteInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a media route. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouter.RouteInfo.html\">MediaRouter.RouteInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides information about a media route. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.SimpleCallback.html\">MediaRouter.SimpleCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Stub implementation of <code><a href=\"/reference/android/media/MediaRouter.Callback.html\">MediaRouter.Callback</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.UserRouteInfo.html\">MediaRouter.UserRouteInfo</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Information about a route that the application may define and modify. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaRouter.VolumeCallback.html\">MediaRouter.VolumeCallback</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for receiving events about volume changes. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteSelector.html\">MediaRouteSelector</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Describes the capabilities of routes that applications would like to discover and use. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v7/media/MediaRouteSelector.Builder.html\">MediaRouteSelector.Builder</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Builder for <code><a href=\"/reference/android/support/v7/media/MediaRouteSelector.html\">media route selectors</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaScannerConnection.html\">MediaScannerConnection</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MediaScannerConnection provides a way for applications to pass a ;; newly created or downloaded media file to the media scanner service. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaScannerConnection.MediaScannerConnectionClient.html\">MediaScannerConnection.MediaScannerConnectionClient</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">An interface for notifying clients of MediaScannerConnection ;; when a connection to the MediaScanner service has been established ;; and when the scanning of a file has completed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-8\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaScannerConnection.OnScanCompletedListener.html\">MediaScannerConnection.OnScanCompletedListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for notifying clients of the result of scanning a ;; requested media file. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.html\">MediaStore</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The Media provider contains meta data for all available media on both internal ;; and external storage devices. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.html\">MediaStore.Audio</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Container for all audio content. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.AlbumColumns.html\">MediaStore.Audio.AlbumColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns representing an album ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Albums.html\">MediaStore.Audio.Albums</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains artists for audio files ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.ArtistColumns.html\">MediaStore.Audio.ArtistColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns representing an artist ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Artists.html\">MediaStore.Audio.Artists</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains artists for audio files ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Artists.Albums.html\">MediaStore.Audio.Artists.Albums</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Sub-directory of each artist containing all albums on which ;; a song by the artist appears. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.AudioColumns.html\">MediaStore.Audio.AudioColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns for audio file that show up in multiple tables. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Genres.html\">MediaStore.Audio.Genres</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains all genres for audio files ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Genres.Members.html\">MediaStore.Audio.Genres.Members</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Sub-directory of each genre containing all members. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.GenresColumns.html\">MediaStore.Audio.GenresColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns representing an audio genre ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Media.html\">MediaStore.Audio.Media</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Playlists.html\">MediaStore.Audio.Playlists</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains playlists for audio files ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.Playlists.Members.html\">MediaStore.Audio.Playlists.Members</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Sub-directory of each playlist containing all members. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Audio.PlaylistsColumns.html\">MediaStore.Audio.PlaylistsColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Columns representing a playlist ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Files.html\">MediaStore.Files</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Media provider table containing an index of all files in the media storage, ;; including non-media files. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-11\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Files.FileColumns.html\">MediaStore.Files.FileColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Fields for master table for all media files. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Images.html\">MediaStore.Images</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Contains meta data for all available images. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Images.ImageColumns.html\">MediaStore.Images.ImageColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Images.Media.html\">MediaStore.Images.Media</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Images.Thumbnails.html\">MediaStore.Images.Thumbnails</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class allows developers to query and get two kinds of thumbnails: ;; MINI_KIND: 512 x 384 thumbnail ;; MICRO_KIND: 96 x 96 thumbnail ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.MediaColumns.html\">MediaStore.MediaColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Common fields for most MediaProvider tables ;; </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Video.html\">MediaStore.Video</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Video.Media.html\">MediaStore.Video.Media</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-5\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Video.Thumbnails.html\">MediaStore.Video.Thumbnails</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class allows developers to query and get two kinds of thumbnails: ;; MINI_KIND: 512 x 384 thumbnail ;; MICRO_KIND: 96 x 96 thumbnail ;; ;; </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/provider/MediaStore.Video.VideoColumns.html\">MediaStore.Video.VideoColumns</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"> </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-16\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/media/MediaSyncEvent.html\">MediaSyncEvent</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The MediaSyncEvent class defines events that can be used to synchronize playback or capture ;; actions between different players and recorders. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-2\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/test/suitebuilder/annotation/MediumTest.html\">MediumTest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Marks a test that should run as part of the medium tests. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/Member.html\">Member</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Common interface providing access to reflective information on class members. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/MemoryFile.html\">MemoryFile</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">MemoryFile is a wrapper for the Linux ashmem driver. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/util/logging/MemoryHandler.html\">MemoryHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A <code>Handler</code> put the description of log events into a cycled memory ;; buffer. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/Menu.html\">Menu</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for managing the items in a menu. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/MenuCompat.html\">MenuCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/view/Menu.html\">Menu</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/MenuInflater.html\">MenuInflater</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class is used to instantiate menu XML files into Menu objects. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/MenuItem.html\">MenuItem</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface for direct access to a previously created menu item. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-14\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/MenuItem.OnActionExpandListener.html\">MenuItem.OnActionExpandListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a menu item ;; marked with <code><a href=\"/reference/android/view/MenuItem.html#SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW\">SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW</a></code> is ;; expanded or collapsed. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/view/MenuItem.OnMenuItemClickListener.html\">MenuItem.OnMenuItemClickListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a menu item is ;; clicked. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/MenuItemCompat.html\">MenuItemCompat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Helper for accessing features in <code><a href=\"/reference/android/view/MenuItem.html\">MenuItem</a></code> ;; introduced after API level 4 in a backwards compatible fashion. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/support/v4/view/MenuItemCompat.OnActionExpandListener.html\">MenuItemCompat.OnActionExpandListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Interface definition for a callback to be invoked when a menu item marked with <code><a href=\"/reference/android/support/v4/view/MenuItemCompat.html#SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW\">SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW</a></code> is expanded or collapsed. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/database/MergeCursor.html\">MergeCursor</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">A convience class that lets you present an array of Cursors as a single linear Cursor. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Message.html\">Message</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Defines a message containing a description and arbitrary data object that can be ;; sent to a <code><a href=\"/reference/android/os/Handler.html\">Handler</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/MessageDigest.html\">MessageDigest</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Uses a one-way hash function to turn an arbitrary number of bytes into a ;; fixed-length byte sequence. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/MessageDigestSpi.html\">MessageDigestSpi</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\"><code>MessageDigestSpi</code> is the Service Provider Interface (SPI) definition ;; for <code><a href=\"/reference/java/security/MessageDigest.html\">MessageDigest</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/MessageFormat.html\">MessageFormat</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Produces concatenated messages in language-neutral way. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/text/MessageFormat.Field.html\">MessageFormat.Field</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The instances of this inner class are used as attribute keys in ;; <code>AttributedCharacterIterator</code> that the ;; <code><a href=\"/reference/java/text/MessageFormat.html#formatToCharacterIterator(java.lang.Object)\">formatToCharacterIterator(Object)</a></code> method returns. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/MessageQueue.html\">MessageQueue</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Low-level class holding the list of messages to be dispatched by a ;; <code><a href=\"/reference/android/os/Looper.html\">Looper</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/MessageQueue.IdleHandler.html\">MessageQueue.IdleHandler</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Callback interface for discovering when a thread is going to block ;; waiting for more messages. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/os/Messenger.html\">Messenger</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Reference to a Handler, which others can use to send messages to it. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/method/MetaKeyKeyListener.html\">MetaKeyKeyListener</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This base class encapsulates the behavior for tracking the state of ;; meta keys such as SHIFT, ALT and SYM as well as the pseudo-meta state of selecting text. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/lang/reflect/Method.html\">Method</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">This class represents a method. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/org/apache/http/MethodNotSupportedException.html\">MethodNotSupportedException</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Indicates that an HTTP method is not supported. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/text/style/MetricAffectingSpan.html\">MetricAffectingSpan</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The classes that affect character-level text formatting in a way that ;; changes the width or height of characters extend this class. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/java/security/spec/MGF1ParameterSpec.html\">MGF1ParameterSpec</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">The parameter specification for the Mask Generation Function (MGF1) in ;; the RSA-PSS Signature and OAEP Padding scheme. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-10\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/nfc/tech/MifareClassic.html\">MifareClassic</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to MIFARE Classic properties and I/O operations on a <code><a href=\"/reference/android/nfc/Tag.html\">Tag</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\"alt-color api apilevel-10\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/nfc/tech/MifareUltralight.html\">MifareUltralight</a></td> ;; <td class=\"jd-descrcol\" width=\"100%\">Provides access to MIFARE Ultralight properties and I/O operations on a <code><a href=\"/reference/android/nfc/Tag.html\">Tag</a></code>. </td> ;; </tr> ;; ;; ;; <tr class=\" api apilevel-1\" > ;; <td class=\"jd-linkcol\"><a href=\"/reference/android/webkit